summaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2024-04-23 11:32:00 +0100
committerLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2024-04-23 16:08:55 +0100
commitce25dbd06510175857e892f88958ea3e55379f1e (patch)
tree672505cc87776e7c890dd36c57834531383d59ec /.github/workflows
parent268b9ea30080c76f30a8553f74569fe222e949f5 (diff)
downloadsentrum-ce25dbd06510175857e892f88958ea3e55379f1e.tar.gz
sentrum-ce25dbd06510175857e892f88958ea3e55379f1e.tar.bz2
sentrum-ce25dbd06510175857e892f88958ea3e55379f1e.zip
Include version in release filenames
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/release.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index cfa05c2..d86fd5d 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -11,13 +11,13 @@ jobs:
include:
- os: ubuntu-latest
bin: sentrum
- name: sentrum-linux-x86_64.tar.gz
+ name: sentrum-${{ github.ref_name }}-linux-x86_64.tar.gz
- os: windows-latest
bin: sentrum.exe
- name: sentrum-windows-x86_64.zip
- - os: macOS-latest
+ name: sentrum-${{ github.ref_name }}-windows-x86_64.zip
+ - os: macos-latest
bin: sentrum
- name: sentrum-darwin-x86_64.tar.gz
+ name: sentrum-${{ github.ref_name }}--darwin-x86_64.tar.gz
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3