Skip to content

Commit

Permalink
Fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Link- committed Oct 14, 2023
1 parent e582d4b commit aebcc4b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,25 +32,27 @@ jobs:
run: |
npm run build
- name: Push new build
- name: Commit new build
uses: EndBug/add-and-commit@a3adef035a1381dcf888c90b847240e2ddb9e008
with:
author_name: Link-
author_email: [email protected]
message: 'Update build'
add: 'bin/starred_search'
push: false

- name: Update version
run: |
npm version ${{ github.event.inputs.version }} --allow-same-version
- name: Push package.json
- name: Commit package.json
uses: EndBug/add-and-commit@a3adef035a1381dcf888c90b847240e2ddb9e008
with:
author_name: Link-
author_email: [email protected]
message: 'Update version'
add: 'package.json'
push: false

- name: Create PR
uses: peter-evans/create-pull-request@v5
Expand Down

0 comments on commit aebcc4b

Please sign in to comment.