Skip to content

Commit

Permalink
change order of release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
maltejur committed Oct 22, 2021
1 parent 0cae058 commit f33bcd7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ jobs:
run: yarn
- name: Bump version
run: node .github/scripts/bumpv.js ${{ github.event.inputs.version }}
- name: Commit and push changes
uses: actions-js/push@master
with:
branch: master
github_token: ${{ secrets.GITHUB_TOKEN }}
message: Bump version to ${{ github.event.inputs.version }}
- name: Build package
run: yarn build
- name: Create release
Expand All @@ -26,9 +32,3 @@ jobs:
title: ${{github.event.inputs.version}}
files: |
dist/index.js
- name: Commit and push changes
uses: actions-js/push@master
with:
branch: master
github_token: ${{ secrets.GITHUB_TOKEN }}
message: Bump version to ${{ github.event.inputs.version }}

0 comments on commit f33bcd7

Please sign in to comment.