Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
Stary2001 committed Feb 4, 2024
1 parent 8a570c5 commit f9fe89b
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 6 deletions.
24 changes: 20 additions & 4 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,33 @@ jobs:
package:
runs-on: "ubuntu-22.04"
steps:
- name: Ensure python
run: |
sudo apt-get update
sudo apt-get -y install python3-pip
- uses: actions/checkout@v3

- uses: actions/download-artifact@v3
with:
name: windows-editor
path: windows-editor
- uses: actions/download-artifact@v3
with:
name: macos-editor
path: macos-editor
- uses: actions/download-artifact@v3
with:
name: linux-editor
path: linux-editor
- uses: actions/download-artifact@v3
with:
name: switch-template
path: switch-template

- uses: actions/download-artifact@v3
with:
name: vita-template
path: switch-template
path: vita-template

- name: Package
run: |
ls -R switch-template vita-template
run: scripts/package.sh
2 changes: 1 addition & 1 deletion .github/workflows/runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ jobs:

package:
name: Package
needs: [switch-build, vita-build]
needs: [windows-build, macos-build, linux-build, switch-build, vita-build]
uses: ./.github/workflows/package.yml
2 changes: 1 addition & 1 deletion scripts/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ mv godot.switch.opt.64 "godot-switch-v${version_number}-DEBUG_ONLY.elf"
rm -r godot-switch-v${version_number}-windows godot-switch-v${version_number}-linux
rm -r switch templates config switch_release.nro actions_api_response* workflows
rm windows-editor.zip macos-editor.zip linux-editor.zip switch-template.zip
popd
popd

0 comments on commit f9fe89b

Please sign in to comment.