Skip to content

Commit

Permalink
Try build-docker.yml actions/upload-artifact@v3 --> actions/upload-ar…
Browse files Browse the repository at this point in the history
…tifact@v4 blind update
  • Loading branch information
lhog committed Jan 31, 2025
1 parent 37ac233 commit 5e61b73
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,22 +146,22 @@ jobs:
docker-image: "${{ github.event.inputs.docker-image }}"

- name: Upload Bin as Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.run-docker-build.outputs.bin_name }}
path: ${{ github.workspace }}/artifacts/${{ steps.run-docker-build.outputs.bin_name }}
if-no-files-found: error

- name: Upload Dbg Artifacts
if: github.event.inputs.strip-symbols == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.run-docker-build.outputs.dbg_name }}
path: ${{ github.workspace }}/artifacts/${{ steps.run-docker-build.outputs.dbg_name }}
if-no-files-found: error

- name: Upload Build Options Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: buildoptions_${{ matrix.config.os }}.txt
path: ${{ github.workspace }}/artifacts/buildoptions_${{ matrix.config.os }}.txt
Expand All @@ -179,7 +179,7 @@ jobs:
echo "Archived ccache size: $(du -h "${CACHE_FILENAME}" | cut -f1)"
- name: Upload ccache Debug Data
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: github.event.inputs.debug-ccache == 'true'
with:
name: ccache_debug_${{ matrix.config.os }}.tgz
Expand Down

0 comments on commit 5e61b73

Please sign in to comment.