Skip to content

Commit c5d258e

Browse files
committed
allow release dryruns temporarily
1 parent ec9f6fa commit c5d258e

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
needs:
4545
- build
4646
runs-on: ubuntu-latest
47-
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
47+
# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
4848
steps:
4949
- name: Download artifacts
5050
uses: actions/download-artifact@v7
@@ -61,10 +61,12 @@ jobs:
6161
zip -j -r "${i%/}.zip" "$i"/*
6262
done
6363
fi
64+
ls -l
6465
- name: Publish Release
6566
uses: softprops/action-gh-release@v2
67+
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
6668
with:
6769
draft: false
6870
generate_release_notes: true
6971
fail_on_unmatched_files: true
70-
files: artifacts/*.zip
72+
files: artifacts/*{.zip,.tar.gz}

0 commit comments

Comments
 (0)