Skip to content

Commit

Permalink
Trying to fix gh actions again
Browse files Browse the repository at this point in the history
  • Loading branch information
StaringLongingly committed Aug 24, 2024
1 parent 3032f0d commit b5ab38e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/game_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
commit_message: "UPDATE GITHUB PAGES"

- name: Zip Web artifacts
run: cd build/web && zip -r ../../game_web.zip *
run: cd build/web && zip -r ../../game_web.zip ./

- name: Upload Web artifacts
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
run: godot -v --export-release --headless "Linux/X11" --path . --output "build/linux/Throwdwarf"

- name: Zip Linux artifacts
run: cd build/linux && zip -r ../../game_linux.zip *
run: cd build/linux && zip -r ../../game_linux.zip ./

- name: Upload Linux artifacts
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
run: godot -v --export-release --headless "Windows Desktop" --path . --output "build/windows/Throwdwarf.exe"

- name: Zip Windows artifacts
run: cd build/windows && zip -r ../../game_windows.zip *
run: cd build/windows && zip -r ../../game_windows.zip ./

- name: Upload Windows artifacts
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: build/web/game_web.zip
asset_path: web/game_web.zip
asset_name: Throwdwarf_Web.zip
asset_content_type: application/zip

Expand Down

0 comments on commit b5ab38e

Please sign in to comment.