diff options
author | sommerfeld <sommerfeld@sommerfeld.dev> | 2024-04-23 11:32:00 +0100 |
---|---|---|
committer | sommerfeld <sommerfeld@sommerfeld.dev> | 2024-04-23 16:08:55 +0100 |
commit | ce25dbd06510175857e892f88958ea3e55379f1e (patch) | |
tree | 672505cc87776e7c890dd36c57834531383d59ec /.github | |
parent | 268b9ea30080c76f30a8553f74569fe222e949f5 (diff) | |
download | sentrum-ce25dbd06510175857e892f88958ea3e55379f1e.tar.gz sentrum-ce25dbd06510175857e892f88958ea3e55379f1e.tar.bz2 sentrum-ce25dbd06510175857e892f88958ea3e55379f1e.zip |
Include version in release filenames
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release.yml | 8 |
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 |