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 | c842b5a15c31d7b327cac233618b576bb1f7a0ef (patch) | |
tree | de2c6c2123bda89f5a39275341f3f3968dbb5717 /.github/workflows/ci.yaml | |
parent | Adding debian version 1:2.12.0-1. (diff) | |
download | bash-completion-c842b5a15c31d7b327cac233618b576bb1f7a0ef.tar.xz bash-completion-c842b5a15c31d7b327cac233618b576bb1f7a0ef.zip |
Merging upstream version 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' |