Skip to content

Commit

Permalink
Remove unnecessary artifact uploading phase from the build workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
domchen committed Nov 21, 2023
1 parent 69416cc commit 5322548
Showing 1 changed file with 8 additions and 38 deletions.
46 changes: 8 additions & 38 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,8 @@ jobs:
if: ${{ failure() }}
uses: actions/upload-artifact@v3
with:
name: tgfx_ios_arm64
path: out

- uses: actions/upload-artifact@v3
with:
name: tgfx_ios_arm64
path: out
name: ios_build
path: ios

android:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -147,13 +142,8 @@ jobs:
if: ${{ failure() }}
uses: actions/upload-artifact@v3
with:
name: tgfx_android_arm64v8a
path: android/app/build/outputs

- uses: actions/upload-artifact@v3
with:
name: tgfx_android_arm64v8a
path: android/app/build/outputs
name: android_build
path: android/app/build

web:
runs-on: macos-latest
Expand Down Expand Up @@ -273,12 +263,7 @@ jobs:
if: ${{ failure() }}
uses: actions/upload-artifact@v3
with:
name: tgfx_web_wasm
path: out

- uses: actions/upload-artifact@v3
with:
name: tgfx_web_wasm
name: web_build
path: out

win:
Expand Down Expand Up @@ -320,12 +305,7 @@ jobs:
if: ${{ failure() }}
uses: actions/upload-artifact@v3
with:
name: tgfx_win_x64
path: out

- uses: actions/upload-artifact@v3
with:
name: tgfx_win_x64
name: win_build
path: out

linux:
Expand Down Expand Up @@ -369,12 +349,7 @@ jobs:
if: ${{ failure() }}
uses: actions/upload-artifact@v3
with:
name: tgfx_linux_x64
path: out

- uses: actions/upload-artifact@v3
with:
name: tgfx_linux_x64
name: linux_build
path: out

qt:
Expand Down Expand Up @@ -428,10 +403,5 @@ jobs:
if: ${{ failure() }}
uses: actions/upload-artifact@v3
with:
name: tgfx_qt_x64
path: out

- uses: actions/upload-artifact@v3
with:
name: tgfx_qt_x64
name: qt_build
path: out

0 comments on commit 5322548

Please sign in to comment.