Skip to content

Commit

Permalink
Add names to steps in build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Nightkingale committed May 18, 2024
1 parent e9dba9b commit 56268df
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,24 @@ jobs:
build-binary:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout Code
uses: actions/checkout@v4

- name: Build Binary
run: |
docker build -t builder .
docker run --rm -v ${PWD}:/project builder make
- uses: actions/upload-artifact@v4
- name: Upload Wii_U_Account_Swap.rpx
uses: actions/upload-artifact@v4
with:
name: Wii_U_Account_Swap.rpx
path: "*.rpx"
if-no-files-found: error
- uses: actions/upload-artifact@v4

- name: Upload Wii_U_Account_Swap.wuhb
uses: actions/upload-artifact@v4
with:
name: Wii_U_Account_Swap.wuhb
path: "*.wuhb"
if-no-files-found: error

if-no-files-found: error

0 comments on commit 56268df

Please sign in to comment.