Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
bitsandbytes
Commits
90f38acc
Commit
90f38acc
authored
May 16, 2025
by
Titus von Koeller
Browse files
continuous release: tweaks
parent
18ead193
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
.github/workflows/python-package.yml
.github/workflows/python-package.yml
+11
-2
No files found.
.github/workflows/python-package.yml
View file @
90f38acc
...
...
@@ -173,7 +173,14 @@ jobs:
merge-multiple
:
true
-
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
run
:
|
...
...
@@ -201,9 +208,11 @@ jobs:
run
:
ls -alFR wheels/
-
uses
:
actions/checkout@v4
with
:
path
:
repo
-
name
:
Delete old pre-release (if exists)
run
:
|
gh release delete continuous-release_main --cleanup-tag -y
cd repo &&
gh release delete continuous-release_main --cleanup-tag -y
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment