Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Joelrau authored Feb 18, 2025
1 parent 3284dc7 commit 4ff922a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- Release
steps:
- name: Check out files
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
Expand All @@ -42,15 +42,15 @@ jobs:
run: msbuild /m /v:minimal /p:Configuration=${{matrix.configuration}} /p:Platform=x64 build/iw7-mod.sln

- name: Upload ${{matrix.configuration}} binaries
uses: actions/upload-artifact@v3.1.0
uses: actions/upload-artifact@v4
with:
name: ${{matrix.configuration}} binaries
path: |
build/bin/x64/${{matrix.configuration}}/iw7-mod.exe
build/bin/x64/${{matrix.configuration}}/iw7-mod.pdb
- name: Upload ${{matrix.configuration}} data artifacts
uses: actions/upload-artifact@v3.1.0
uses: actions/upload-artifact@v4
with:
name: ${{matrix.configuration}} data artifacts
path: |
Expand All @@ -70,12 +70,12 @@ jobs:
run: echo "AURORA_MASTER_PATH=${{ secrets.AURORA_MASTER_SSH_PATH_DEV }}" >> $GITHUB_ENV

- name: Download Release binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Release binaries

- name: Download Release data artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Release data artifacts
path: data
Expand Down

0 comments on commit 4ff922a

Please sign in to comment.