Skip to content

Commit

Permalink
github: downgrade upload-artifact due to connection issues
Browse files Browse the repository at this point in the history
  • Loading branch information
osy committed Sep 26, 2023
1 parent ea4906a commit 989eae4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
run: tar -acf sysroot.tgz sysroot*
- name: Upload Sysroot
if: steps.cache-sysroot.outputs.cache-hit != 'true' || github.event_name == 'release' || github.event.inputs.test_release == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v3.1.2
with:
name: Sysroot-${{ matrix.platform }}-${{ matrix.arch }}
path: sysroot.tgz
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
run: tar -acf sysroot.tgz sysroot-macOS-arm64_x86_64
- name: Upload Sysroot
if: steps.cache-sysroot-universal.outputs.cache-hit != 'true' || github.event_name == 'release' || github.event.inputs.test_release == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v3.1.2
with:
name: Sysroot-macos-universal
path: sysroot.tgz
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
./scripts/build_utm.sh -p ${{ matrix.platform }} -a ${{ matrix.arch }} -o UTM
tar -acf UTM.xcarchive.tgz UTM.xcarchive
- name: Upload UTM
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v3.1.2
with:
name: UTM-${{ matrix.platform }}-${{ matrix.arch }}
path: UTM.xcarchive.tgz
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
env:
SIGNING_TEAM_ID: ${{ vars.SIGNING_TEAM_ID }}
- name: Upload UTM
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v3.1.2
with:
name: UTM-macos-universal
path: UTM.xcarchive.tgz
Expand Down Expand Up @@ -258,7 +258,7 @@ jobs:
./scripts/package.sh ${{ matrix.configuration.mode }} UTM.xcarchive .
- name: Upload Artifact
if: github.event_name != 'release'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v3.1.2
with:
name: ${{ matrix.configuration.name }}
path: ${{ matrix.configuration.path }}
Expand Down Expand Up @@ -340,7 +340,7 @@ jobs:
NOTARIZE_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
- name: Upload Artifact
if: github.event_name != 'release'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v3.1.2
with:
name: UTM-dmg
path: UTM.dmg
Expand Down Expand Up @@ -395,7 +395,7 @@ jobs:
LAUNCHER_PROFILE_UUID: ${{ vars.APP_STORE_LAUNCHER_PROFILE_UUID }}
- name: Upload Artifact
if: github.event_name != 'release'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v3.1.2
with:
name: UTM-pkg
path: UTM.pkg
Expand Down

0 comments on commit 989eae4

Please sign in to comment.