aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2023-07-13 14:19:48 +0000
committersaturneric <[email protected]>2023-07-13 14:19:48 +0000
commit209cbe0ead766ede673b37d30c4900f70f82e6ba (patch)
tree26471d9cffab231902c450be4a86df1162b9be9a
parentfix: solve a compile issue on windows platform (diff)
downloadGpgFrontend-209cbe0ead766ede673b37d30c4900f70f82e6ba.tar.gz
GpgFrontend-209cbe0ead766ede673b37d30c4900f70f82e6ba.zip
fix: attach commit sha to build artifact name
-rw-r--r--.github/workflows/release.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index ea65b0ac..9a520c4d 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -228,20 +228,20 @@ jobs:
- name: Upload Artifact(Linux)
uses: actions/upload-artifact@master
with:
- name: gpgfrontend-${{matrix.os}}-${{env.BUILD_TYPE}}-${{env.sha_short}}
+ name: gpgfrontend-${{matrix.os}}-${{env.BUILD_TYPE}}-${{ github.sha }}
path: ${{github.workspace}}/build/artifactOut/GpgFrontend*.AppImage*
if: matrix.os == 'ubuntu-20.04'
- name: Upload Artifact(macOS)
uses: actions/upload-artifact@master
with:
- name: gpgfrontend-${{matrix.os}}-${{env.BUILD_TYPE}}-${{env.sha_short}}
+ name: gpgfrontend-${{matrix.os}}-${{env.BUILD_TYPE}}-${{ github.sha }}
path: ${{github.workspace}}/build/artifactOut/*
if: matrix.os == 'macos-11' || matrix.os == 'macos-12'
- name: Upload Artifact(Windows)
uses: actions/upload-artifact@master
with:
- name: gpgfrontend-${{matrix.os}}-${{env.BUILD_TYPE}}-${{env.sha_short}}
+ name: gpgfrontend-${{matrix.os}}-${{env.BUILD_TYPE}}-${{ github.sha }}
path: ${{github.workspace}}/build/release/*
if: matrix.os == 'windows-2019'