Skip to content

Commit

Permalink
ci workflow: update upload-artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
mineiwik committed Oct 5, 2024
1 parent ab3a656 commit 4f8a76c
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/godot-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
cd $PROJECT_PATH
godot --headless --verbose --export-release "Windows Desktop" ../build/windows/$EXPORT_NAME.exe
- name: Upload Artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: windows
path: build/windows
Expand All @@ -52,7 +52,7 @@ jobs:
cd $PROJECT_PATH
godot --headless --verbose --export-release "Linux" ../build/linux/$EXPORT_NAME.x86_64
- name: Upload Artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: linux
path: build/linux
Expand All @@ -77,7 +77,7 @@ jobs:
cd $PROJECT_PATH
godot --headless --verbose --export-release "Web" ../build/web/index.html
- name: Upload Artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: web
path: build/web
Expand Down Expand Up @@ -110,8 +110,7 @@ jobs:
cd $PROJECT_PATH
godot --headless --verbose --export-release "macOS" ../build/mac/$EXPORT_NAME.zip
- name: Upload Artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: mac
path: build/mac

0 comments on commit 4f8a76c

Please sign in to comment.