mirror of
https://github.com/noviceli/jetbra
synced 2024-11-21 12:46:25 +03:00
update release action
This commit is contained in:
parent
49bf843f52
commit
705e2cc51d
1 changed files with 3 additions and 3 deletions
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
|
@ -44,14 +44,14 @@ jobs:
|
||||||
git config user.name "novice88"
|
git config user.name "novice88"
|
||||||
|
|
||||||
- name: Create Tag
|
- name: Create Tag
|
||||||
run: git tag -a ${{ github.workflow }} -m "Release version ${{ github.workflow }}"
|
run: git tag -a v${{ github.run_number }} -m "Release version v${{ github.run_number }}"
|
||||||
|
|
||||||
- name: Push Tag
|
- name: Push Tag
|
||||||
run: git push origin ${{ github.workflow }}
|
run: git push origin v${{ github.run_number }}
|
||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
id: create_release
|
id: create_release
|
||||||
uses: ncipollo/release-action@v1
|
uses: ncipollo/release-action@v1
|
||||||
with:
|
with:
|
||||||
artifacts: "jetbra-dist/target/jetbra-all.zip"
|
artifacts: "jetbra-dist/target/jetbra-all.zip"
|
||||||
tag: ${{ github.workflow }}
|
tag: v${{ github.run_number }}
|
Loading…
Add table
Reference in a new issue