summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/release-please-manifest.json2
-rw-r--r--.github/workflows/ci.yaml14
2 files changed, 10 insertions, 6 deletions
diff --git a/.github/release-please-manifest.json b/.github/release-please-manifest.json
index 95b1793..6f6cd64 100644
--- a/.github/release-please-manifest.json
+++ b/.github/release-please-manifest.json
@@ -1 +1 @@
-{".":"2.12.0"}
+{".":"2.13.0"}
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'