You need to sign in or sign up before continuing.
Commit 90f38acc authored by Titus von Koeller's avatar Titus von Koeller
Browse files

continuous release: tweaks

parent 18ead193
...@@ -173,7 +173,14 @@ jobs: ...@@ -173,7 +173,14 @@ jobs:
merge-multiple: true merge-multiple: true
- name: Inspect tmp directory after downloading artifacts - name: Inspect tmp directory after downloading artifacts
run: ls -alFR tmp/ run: |
ls -alFR tmp/
WHEEL_COUNT=$(find wheels -type f -name "*.whl" | wc -l)
echo "Found $WHEEL_COUNT wheel files"
if [ "$WHEEL_COUNT" -eq 0 ]; then
echo "::error::No wheel files found in wheels directory! Cannot proceed with release."
exit 1
fi
- name: Move and rename wheel files with pattern replacement - name: Move and rename wheel files with pattern replacement
run: | run: |
...@@ -201,9 +208,11 @@ jobs: ...@@ -201,9 +208,11 @@ jobs:
run: ls -alFR wheels/ run: ls -alFR wheels/
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with:
path: repo
- name: Delete old pre-release (if exists) - name: Delete old pre-release (if exists)
run: | run: |
gh release delete continuous-release_main --cleanup-tag -y cd repo && gh release delete continuous-release_main --cleanup-tag -y
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment