diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:58 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:58 +0000 |
commit | d460debc6f2747699a54b7ea0e25f4ec69bf1b3d (patch) | |
tree | ca88441f05ddeb5857757e4fbba5f266119e0439 /.github/workflows/ci.yaml | |
parent | Adding upstream version 1:2.12.0. (diff) | |
download | bash-completion-d460debc6f2747699a54b7ea0e25f4ec69bf1b3d.tar.xz bash-completion-d460debc6f2747699a54b7ea0e25f4ec69bf1b3d.zip |
Adding upstream version 1:2.13.0.upstream/1%2.13.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github/workflows/ci.yaml')
-rw-r--r-- | .github/workflows/ci.yaml | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 27480fa..60f9adb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -82,13 +82,17 @@ jobs: env: DIST: ${{matrix.dist}} NETWORK: ${{matrix.network}} + - uses: actions/upload-artifact@v4 + with: + path: | + bash-completion-*.tar.xz + sha256sums.txt + if: matrix.dist == 'alpine' - name: Upload release assets run: | set -x gh release upload ${{steps.release.outputs.tag_name}} \ - bash-completion-$(cat version.txt).tar.xz + bash-completion-$(cat version.txt).tar.xz sha256sums.txt + env: + GH_TOKEN: ${{github.token}} if: steps.release.outputs.release_created - - uses: actions/upload-artifact@v4 - with: - path: bash-completion-*.tar.xz - if: matrix.dist == 'alpine' |