Skip to content

Commit

Permalink
do not include version name in artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreWohnsland committed Jun 1, 2024
1 parent f03a593 commit 83f13eb
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Build and Release with PyInstaller
run-name: Build and Release ${{ github.event.release.tag_name }}

on:
release:
Expand All @@ -12,11 +13,11 @@ jobs:
matrix:
include:
- os: ubuntu-latest
artifact_name: timetracker_${{ github.event.release.tag_name }}_ubuntu
artifact_name: timetracker_ubuntu
- os: windows-latest
artifact_name: timetracker_${{ github.event.release.tag_name }}_win.exe
artifact_name: timetracker_win.exe
- os: macos-latest
artifact_name: timetracker_${{ github.event.release.tag_name }}_mac
artifact_name: timetracker_mac

steps:
- name: Checkout code
Expand Down

0 comments on commit 83f13eb

Please sign in to comment.