Skip to content

Commit

Permalink
fix: adding artifact upload
Browse files Browse the repository at this point in the history
  • Loading branch information
adamamer20 committed Aug 28, 2024
1 parent 5b77b10 commit 6fa9e64
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ jobs:
CURRENT_VERSION=$(hatch version)
pip install $PACKAGE_NAME==$CURRENT_VERSION
python -c "import mesa_frames; print(mesa_frames.__version__)"
- name: Upload package as artifact to GitHub
uses: actions/upload-artifact@v4
with:
name: package
path: dist/
- name: Create or recreate version branch
run: |
CURRENT_VERSION=$(hatch version)
Expand All @@ -64,6 +69,7 @@ jobs:
# Switch back to the main branch
git checkout main
- name: Update to Next Version
run: |
# Bump to next development version
Expand Down

0 comments on commit 6fa9e64

Please sign in to comment.