Skip to content

Commit

Permalink
Fix errors in beta workflow script (#1477)
Browse files Browse the repository at this point in the history
* Fix path error

* Don't automatically tag beta builds.
  • Loading branch information
sammacbeth committed Oct 27, 2022
1 parent 6710367 commit f6fb618
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,12 @@ jobs:
run: |
npm run bundle-config
node scripts/bumpVersion.js $(date "+%Y.%m.%d")
echo "VERSION=$(jq -r .version ./browser/chrome-mv3/manifest.json)" >> $GITHUB_ENV
echo "VERSION=$(jq -r .version ./browsers/chrome-mv3/manifest.json)" >> $GITHUB_ENV
- name: Commit config and version updates
uses: stefanzweifel/git-auto-commit-action@f6f7a9c351bb990cab0093f66c0d443d3a108a6f
with:
commit_message: "Prepare release ${{ env.VERSION }}"
tagging_message: ${{ env.VERSION }}
create_branch: true
branch: "release/beta/${{ env.VERSION }}"

Expand Down

0 comments on commit f6fb618

Please sign in to comment.