diff options
author | Peter van Dijk <peter.van.dijk@powerdns.com> | 2021-11-05 13:06:15 +0100 |
---|---|---|
committer | Paul Spooren <mail@aparcar.org> | 2021-11-05 07:16:50 -1000 |
commit | bbf983721cf41fd94388b16ce90f018d6c0496f5 (patch) | |
tree | 03206aa16699dd228f395ed0cba645402289da41 /.github | |
parent | 9e7b9a4978ecaed8642b0cfe021a9bdf28d8bb62 (diff) |
artifacts: use git commit sha in name
Signed-off-by: Peter van Dijk <peter.van.dijk@powerdns.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/multi-arch-test-build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/multi-arch-test-build.yml b/.github/workflows/multi-arch-test-build.yml index 2afed127a..c17063b1d 100644 --- a/.github/workflows/multi-arch-test-build.yml +++ b/.github/workflows/multi-arch-test-build.yml @@ -98,13 +98,13 @@ jobs: - name: Store packages uses: actions/upload-artifact@v2 with: - name: ${{ matrix.arch}}-packages + name: ${{ matrix.arch}}-${{ github.sha}}-packages path: "*.ipk" - name: Store logs uses: actions/upload-artifact@v2 with: - name: ${{ matrix.arch}}-logs + name: ${{ matrix.arch}}-${{ github.sha}}-logs path: logs/ - name: Remove logs |