Skip to content

Commit

Permalink
pipeline: name artifacts generically
Browse files Browse the repository at this point in the history
  • Loading branch information
kirides committed Jul 5, 2024
1 parent eba5380 commit 534162b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Set tag and directory name env
run: |
$tagName = $Env:GITHUB_SHA.Substring(0, 9)
$dirName = "GD3D11-git-$tagName"
$dirName = "GD3D11-git"
echo "Tag: ${tagName}"
echo "Directory: ${dirName}"
echo "RELEASE_VERSION=${tagName}" >> $Env:GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set tag and directory name env
run: |
$tagName = $Env:GITHUB_REF -replace 'refs/tags/', ''
$dirName = "GD3D11-${tagName}"
$dirName = "GD3D11"
$shortHash = $Env:GITHUB_SHA.Substring(0, 9)
echo "Tag: ${tagName}"
echo "Directory: ${dirName}"
Expand Down

0 comments on commit 534162b

Please sign in to comment.