@ankhorage/devtools 1.11.4 → 1.11.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -63,6 +63,8 @@ jobs:
63
63
  id: release
64
64
  if: hashFiles('.changeset/config.json') != ''
65
65
  run: |
66
+ git fetch origin main
67
+ git checkout -B main origin/main
66
68
  before_version="$(node -p "require('./package.json').version")"
67
69
  __ANKH_CHANGESETS_VERSION_COMMAND__
68
70
  after_version="$(node -p "require('./package.json').version")"
@@ -76,7 +78,11 @@ jobs:
76
78
  git config user.email "ankhorage-renovate-sync[bot]@users.noreply.github.com"
77
79
  git add --all
78
80
  git commit -m "chore(release): version packages [skip ci]"
79
- git push origin HEAD:main
81
+ if ! git push origin HEAD:main; then
82
+ git fetch origin main
83
+ git rebase origin/main
84
+ git push origin HEAD:main
85
+ fi
80
86
 
81
87
  if [ "$before_version" = "$after_version" ]; then
82
88
  echo "versioned=false" >> "$GITHUB_OUTPUT"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ankhorage/devtools",
3
- "version": "1.11.4",
3
+ "version": "1.11.5",
4
4
  "description": "Shared development tools and repository standards for Ankhorage",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/ankhorage/devtools#readme",