Skip to content

Commit

Permalink
Immutability issue Upload/Download Actions
Browse files Browse the repository at this point in the history
- Attempt to fix breaking change in v3 to v4 upload/download actions
  • Loading branch information
data-bomb authored Jan 27, 2024
1 parent 0df8179 commit d0dd781
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/cicd-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,13 +172,13 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: dedicated-server-${{ env.GITHUB_SHA_SHORT }}
path: ${{ env.START_DIR }}/dedi
name: dedicated-server-${{ matrix.path }}-build-${{ env.GITHUB_SHA_SHORT }}
path: ${{ env.START_DIR }}/dedi/Mods/${{ matrix.path }}

- uses: actions/upload-artifact@v4
with:
name: listen-server-${{ env.GITHUB_SHA_SHORT }}
path: ${{ env.START_DIR }}/listen
name: listen-server-${{ matrix.path }}-build-${{ env.GITHUB_SHA_SHORT }}
path: ${{ env.START_DIR }}/listen/Mods/${{ matrix.path }}

publish:
if: github.event_name == 'push' && ${{ !failure() && !cancelled() }}
Expand All @@ -198,12 +198,14 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: dedicated-server-${{ env.GITHUB_SHA_SHORT }}
pattern: dedicated-server-*
merge-multiple: true
path: release/dedi

- uses: actions/download-artifact@v4
with:
name: listen-server-${{ env.GITHUB_SHA_SHORT }}
pattern: listen-server-*
merge-multiple: true
path: release/listen

- name: Zip Builds
Expand Down

0 comments on commit d0dd781

Please sign in to comment.