Merge branch 'master' of github.com:postwoman-io/postwoman-proxy
This commit is contained in:
commit
f8a181403a
1 changed files with 5 additions and 3 deletions
8
.github/workflows/main.yml
vendored
8
.github/workflows/main.yml
vendored
|
@ -129,11 +129,13 @@ jobs:
|
||||||
name: Create a Release
|
name: Create a Release
|
||||||
id: create_release
|
id: create_release
|
||||||
uses: actions/create-release@v1
|
uses: actions/create-release@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
# The name of the tag. This should come from the webhook payload, `github.GITHUB_REF` when a user pushes a new tag
|
# The name of the tag. This should come from the webhook payload, `github.GITHUB_REF` when a user pushes a new tag
|
||||||
tag_name: ${{ github.GITHUB_REF }}
|
tag_name: "v${{ env.VERSION_NAME }}"
|
||||||
# The name of the release. For example, `Release v1.0.1`
|
# The name of the release. For example, `Release v1.0.1`
|
||||||
release_name: Release v$VERSION_NAME
|
release_name: "Release v${{ env.VERSION_NAME }}"
|
||||||
# Text describing the contents of the tag.
|
# Text describing the contents of the tag.
|
||||||
body: ""
|
body: ""
|
||||||
draft: false
|
draft: false
|
||||||
|
@ -141,7 +143,7 @@ jobs:
|
||||||
-
|
-
|
||||||
name: Upload Release Asset
|
name: Upload Release Asset
|
||||||
id: upload_release_assets
|
id: upload_release_assets
|
||||||
uses: NBTX/upload-release-assets@v1
|
uses: NBTX/upload-release-assets@v2.0.2
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in a new issue