diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8d0e6a6a..dfab2a04 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -252,9 +252,8 @@ jobs: git config --global user.name "GitHub Action" git add . git commit -m "Stable version bump for all changed packages" - git checkout main # Explicitly checkout main branch - git branch --set-upstream-to=origin/main main # Ensure tracking is set - git push origin main # Push directly to main + git checkout main # Ensure you're on the correct branch + git push origin main:refs/heads/main # Use the explicit refspec env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/packages/lasereyes/package.json b/packages/lasereyes/package.json index 1a5f9851..f5330431 100644 --- a/packages/lasereyes/package.json +++ b/packages/lasereyes/package.json @@ -1,7 +1,7 @@ { "name": "@omnisat/lasereyes", "private": false, - "version": "0.0.108-rc.11", + "version": "0.0.109-rc.10", "type": "module", "main": "./dist/index.umd.cjs", "module": "./dist/index.js",