Skip to content

Commit

Permalink
upgrade versions of actions/*-artifact (#1707)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradgrantham-lunarg authored Sep 5, 2024
1 parent 3efdf0b commit aff347e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
mv ${{ matrix.config.build_dir }}/linux/x64/output/lib*/*.so gfxreconstruct-dev/
mv ${{ matrix.config.build_dir }}/linux/x64/output/share/vulkan/explicit_layer.d/*.json gfxreconstruct-dev/
- name: Upload artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.config.artifact }}
path: ./gfxreconstruct-dev
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
copy layer\vk_layer_settings.txt ${{ matrix.config.build_dir }}\windows\x64\output\bin\
move ${{ matrix.config.build_dir }}\windows\x64\output\bin gfxreconstruct-dev
- name: Upload artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.config.artifact }}
path: .\gfxreconstruct-dev
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
cd gfxreconstruct-dev
zip -r9 "../${{ matrix.config.artifact }}.zip" *
- name: Upload artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.config.artifact }}
path: ${{ matrix.config.artifact }}.zip
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
cp android/tools/replay/build/outputs/apk/debug/replay-debug.apk gfxreconstruct-dev/tools/
cp android/scripts/gfxrecon.py gfxreconstruct-dev/tools/
- name: Upload artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.config.artifact }}
path: ./gfxreconstruct-dev
14 changes: 7 additions & 7 deletions .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
mv build/linux/x64/output/lib*/*.so gfxreconstruct-dev/
mv build/linux/x64/output/share/vulkan/explicit_layer.d/*.json gfxreconstruct-dev/
- name: Upload artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.config.artifact }}
path: ./gfxreconstruct-dev
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
copy layer\vk_layer_settings.txt build\windows\x64\output\bin\
move build\windows\x64\output\bin gfxreconstruct-dev
- name: Upload artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.config.artifact }}
path: .\gfxreconstruct-dev
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
mv ${{ matrix.config.build_dir }}/darwin/universal/output/share/vulkan/explicit_layer.d/*.json gfxreconstruct-dev/
- name: Upload artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.config.artifact }}
path: ./gfxreconstruct-dev
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
cp android/tools/replay/build/outputs/apk/debug/replay-debug.apk gfxreconstruct-dev/tools/
cp android/scripts/gfxrecon.py gfxreconstruct-dev/tools/
- name: Upload artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.config.artifact }}
path: ./gfxreconstruct-dev
Expand Down Expand Up @@ -226,7 +226,7 @@ jobs:
run: |
echo "${{ steps.create_release.outputs.upload_url }}" > ./release_url
- name: Upload release URL
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: release_url
path: ./release_url
Expand Down Expand Up @@ -278,15 +278,15 @@ jobs:
tag_name=`echo "${{ github.ref }}" | cut -d "/" -f 3`
echo "::set-output name=tag_name::$tag_name"
- name: Download artifacts
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: ${{ matrix.config.artifact }}
path: ./gfxreconstruct-${{ steps.get_tag_name.outputs.tag_name }}
- name: Make release artifacts
run: |
${{ matrix.config.command }} gfxreconstruct-${{ steps.get_tag_name.outputs.tag_name }}-${{ matrix.config.suffix }} gfxreconstruct-${{ steps.get_tag_name.outputs.tag_name }}
- name: Download release URL
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: release_url
path: ./
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/sdk_android_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
cp android/tools/replay/build/outputs/apk/debug/replay-debug.apk gfxreconstruct-dev/tools/
cp android/scripts/gfxrecon.py gfxreconstruct-dev/tools/
- name: Upload artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.config.artifact }}
path: ./gfxreconstruct-dev
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
run: |
echo "${{ steps.create_release.outputs.upload_url }}" > ./release_url
- name: Upload release URL
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: release_url
path: ./release_url
Expand Down Expand Up @@ -132,15 +132,15 @@ jobs:
tag_name=`echo "${{ github.ref }}" | cut -d "/" -f 3`
echo "::set-output name=tag_name::$tag_name"
- name: Download artifacts
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: ${{ matrix.config.artifact }}
path: ./gfxreconstruct-${{ steps.get_tag_name.outputs.tag_name }}
- name: Make release artifacts
run: |
${{ matrix.config.command }} gfxreconstruct-${{ steps.get_tag_name.outputs.tag_name }}-${{ matrix.config.suffix }} gfxreconstruct-${{ steps.get_tag_name.outputs.tag_name }}
- name: Download release URL
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: release_url
path: ./
Expand Down

0 comments on commit aff347e

Please sign in to comment.