-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
36 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: bump-version-test | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
bump-version: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ssh-key: ${{ secrets.RELEASE_SSH_KEY }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: actions/setup-node@v4 | ||
with: | ||
cache: "yarn" | ||
node-version-file: ".tool-versions" | ||
- name: Setup build dependencies | ||
run: | | ||
make deps | ||
yarn install | ||
- name: Configure Git user | ||
run: | | ||
git config user.name "jocmp" | ||
git config user.email "9521010+jocmp@users.noreply.github.com" | ||
- name: Build | ||
run: | | ||
make build | ||
git add dist/ | ||
- name: Bump Version | ||
run: | | ||
bumpver update --${{ github.event.inputs.version }} --allow-dirty --dry |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters