Skip to content

Commit

Permalink
Merge branch 'releases'
Browse files Browse the repository at this point in the history
  • Loading branch information
WillB97 committed Jun 23, 2024
2 parents 7cb5c28 + fb79a78 commit 0655e63
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,17 @@ jobs:
python -m pip install --upgrade pip
python -m pip install -r dev_requirements.txt
- name: Make release
id: release
run: |
poe release
# TODO unzip release to avoid the double zip, but
# Log the release name for later use
echo "RELEASE_NAME=$(ls dist/)"| sed 's/\.zip//' > "$GITHUB_OUTPUT"
# Extract the release the release to avoid the double zip
unzip dist/*.zip -d dist/
rm dist/sbot-simulator*.zip
- name: Save built release
uses: actions/upload-artifact@v4
with:
name: release
name: ${{ steps.release.outputs.RELEASE_NAME }}
path: |
dist/*.zip
dist/*

0 comments on commit 0655e63

Please sign in to comment.