Skip to content

Commit

Permalink
update workflow actions
Browse files Browse the repository at this point in the history
  • Loading branch information
TurtleP committed Apr 24, 2024
1 parent 931d9cf commit e15b808
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/Nintendo 3DS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Configure
run: /opt/devkitpro/portlibs/3ds/bin/arm-none-eabi-cmake -S . -B build
Expand All @@ -21,9 +21,9 @@ jobs:
run: make -C build

- id: commit
uses: pr-mpt/actions-commit-hash@v1
uses: prompt/actions-commit-hash@v3

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: Nintendo 3DS-${{ steps.commit.outputs.short }}
path: |
Expand All @@ -39,7 +39,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Configure
run: /opt/devkitpro/portlibs/3ds/bin/arm-none-eabi-cmake -DCMAKE_BUILD_TYPE=Debug -S . -B build
Expand All @@ -48,9 +48,9 @@ jobs:
run: make -C build

- id: commit
uses: pr-mpt/actions-commit-hash@v1
uses: prompt/actions-commit-hash@v3

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: Nintendo 3DS (Debug)-${{ steps.commit.outputs.short }}
path: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/Nintendo Switch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Configure
run: /opt/devkitpro/portlibs/switch/bin/aarch64-none-elf-cmake -S . -B build
Expand All @@ -21,9 +21,9 @@ jobs:
run: make -C build

- id: commit
uses: pr-mpt/actions-commit-hash@v1
uses: prompt/actions-commit-hash@v3

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: Nintendo Switch-${{ steps.commit.outputs.short }}
path: |
Expand All @@ -39,7 +39,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Configure
run: /opt/devkitpro/portlibs/switch/bin/aarch64-none-elf-cmake -DCMAKE_BUILD_TYPE=Debug -S . -B build
Expand All @@ -48,9 +48,9 @@ jobs:
run: make -C build

- id: commit
uses: pr-mpt/actions-commit-hash@v1
uses: prompt/actions-commit-hash@v3

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: Nintendo Switch (Debug)-${{ steps.commit.outputs.short }}
path: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/Nintendo Wii U.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Configure
run: /opt/devkitpro/portlibs/wiiu/bin/powerpc-eabi-cmake -S . -B build
Expand All @@ -21,9 +21,9 @@ jobs:
run: make -C build

- id: commit
uses: pr-mpt/actions-commit-hash@v1
uses: prompt/actions-commit-hash@v3

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: Nintendo Wii U-${{ steps.commit.outputs.short }}
path: |
Expand All @@ -39,7 +39,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Configure
run: /opt/devkitpro/portlibs/wiiu/bin/powerpc-eabi-cmake -DCMAKE_BUILD_TYPE=Debug -S . -B build
Expand All @@ -48,9 +48,9 @@ jobs:
run: make -C build

- id: commit
uses: pr-mpt/actions-commit-hash@v1
uses: prompt/actions-commit-hash@v3

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: Nintendo Wii U (Debug)-${{ steps.commit.outputs.short }}
path: |
Expand Down

0 comments on commit e15b808

Please sign in to comment.