mirror of
https://github.com/p-stream/simple-proxy.git
synced 2026-01-11 20:10:35 +00:00
GitHub Actions: Final fix to tags?
This commit is contained in:
parent
5c2d924b7e
commit
a427bf1aac
1 changed files with 7 additions and 1 deletions
8
.github/workflows/build_release.yml
vendored
8
.github/workflows/build_release.yml
vendored
|
|
@ -31,13 +31,19 @@ jobs:
|
|||
name: worker.js
|
||||
path: ./dist/worker.js
|
||||
|
||||
- name: Bump version and push tag
|
||||
id: tag_version
|
||||
uses: mathieudutour/github-tag-action@v6.1
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Create Release
|
||||
id: create_release
|
||||
uses: actions/create-release@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
tag_name: ${{ github.ref }}
|
||||
tag_name: ${{ steps.tag_version.outputs.new_tag }}
|
||||
release_name: Simple Proxy Worker
|
||||
draft: false
|
||||
prerelease: false
|
||||
|
|
|
|||
Loading…
Reference in a new issue