summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/release.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 78d242db..04a35d49 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -34,6 +34,9 @@ jobs:
- name: Create github release
run: |
- gh release create ${{ github.ref_name }} --title ${{ github.ref_name }} --generate-notes _build/meson-dist/*
+ make distcheck
+ TARBALL=$(ls marco-*.tar.xz | head -1)
+ sha256sum "$TARBALL" > "$TARBALL.sha256"
+ md5sum "$TARBALL" > "$TARBALL.md5"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}