We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74da075 commit 98cd4b3Copy full SHA for 98cd4b3
.github/workflows/gen_orig.yml
@@ -26,6 +26,14 @@ jobs:
26
run: |
27
meson setup build
28
meson dist --no-tests --include-subprojects -C build
29
+ - name: Check for output tarball
30
+ run: |
31
+ TARBALL="libpisp-$(echo "$GITHUB_REF_NAME" | sed 's/^v//').tar.xz"
32
+ if ! [ -f "build/meson-dist/$TARBALL" ]; then
33
+ echo "Expected tarball not found - $TARBALL"
34
+ echo "Does 'version' in meson.build match the tag?"
35
+ exit 1
36
+ fi
37
- name: Release tarball
38
uses: softprops/action-gh-release@v1
39
with:
0 commit comments