mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-11 05:02:37 +01:00
🐛 fix release name
This commit is contained in:
parent
c22fe86c46
commit
2287c294de
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
@ -14,6 +14,9 @@ jobs:
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
- name: Extract version
|
||||
id: extract_version
|
||||
uses: Saionaro/extract-package-version@v1.0.6
|
||||
- name: Build # This would actually build your project, using zip for an example artifact
|
||||
run: |
|
||||
npm install
|
||||
@ -24,8 +27,8 @@ jobs:
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
tag_name: ${{ github.ref }}
|
||||
release_name: Release ${{ github.ref }}
|
||||
tag_name: ${{ steps.extract_version.outputs.version }}
|
||||
release_name: Release ${{ steps.extract_version.outputs.version }}
|
||||
draft: true
|
||||
prerelease: true
|
||||
- name: Upload Release Asset
|
||||
|
Loading…
Reference in New Issue
Block a user