Skip to content

Commit

Permalink
Updated GitHub actions to use upload v4
Browse files Browse the repository at this point in the history
  • Loading branch information
jwvhewitt committed Sep 29, 2024
1 parent 22c450b commit 9a84919
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linuxbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: |
cxfreeze -c main.py --target-dir dist/ghcaramel --include-files=data,design,image,music,soundfx,credits.md,history.md,LICENSE,README.md -s --target-name=ghcaramel --packages=pygame,numpy,pbgerecolor
- name: Upload the file
uses: actions/upload-artifact
uses: actions/upload-artifact@v4
with:
name: ghclinux
path: dist/
2 changes: 1 addition & 1 deletion .github/workflows/macbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: |
cxfreeze -c main.py --target-dir dist/ghcaramel --include-files=data,design,image,music,soundfx,credits.md,history.md,LICENSE,README.md -O -s --target-name=ghcaramel --packages=pygame,numpy,pbgerecolor
- name: Upload the file
uses: actions/upload-artifact
uses: actions/upload-artifact@v4
with:
name: ghcmac
path: dist/
2 changes: 1 addition & 1 deletion .github/workflows/winbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: |
python setup.py build
- name: Upload the file
uses: actions/upload-artifact
uses: actions/upload-artifact@v4
with:
name: ghcwin
path: build/

0 comments on commit 9a84919

Please sign in to comment.