diff options
author | saturneric <[email protected]> | 2023-07-13 14:19:48 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2023-07-13 14:19:48 +0000 |
commit | 209cbe0ead766ede673b37d30c4900f70f82e6ba (patch) | |
tree | 26471d9cffab231902c450be4a86df1162b9be9a | |
parent | fix: solve a compile issue on windows platform (diff) | |
download | GpgFrontend-209cbe0ead766ede673b37d30c4900f70f82e6ba.tar.gz GpgFrontend-209cbe0ead766ede673b37d30c4900f70f82e6ba.zip |
fix: attach commit sha to build artifact name
-rw-r--r-- | .github/workflows/release.yml | 6 |
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' |