diff options
author | Rob Mensching <rob@firegiant.com> | 2024-07-15 13:04:52 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2024-10-04 11:54:12 -0700 |
commit | cff717e0122bbb52d4d808d9b2cca88f25451211 (patch) | |
tree | fb9cf832195ee9ebe8452815968eade7d2622a9e | |
parent | f3ea3a10df661ec06aa8b907bd1f7a739e513cec (diff) | |
download | wix-cff717e0122bbb52d4d808d9b2cca88f25451211.tar.gz wix-cff717e0122bbb52d4d808d9b2cca88f25451211.tar.bz2 wix-cff717e0122bbb52d4d808d9b2cca88f25451211.zip |
Update deprecated GitHub action upload-artifacts
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bec4f1e1..b745272c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml | |||
@@ -75,7 +75,7 @@ jobs: | |||
75 | run: 7z a build\testresults.zip @src\testresultfilelist.txt | 75 | run: 7z a build\testresults.zip @src\testresultfilelist.txt |
76 | 76 | ||
77 | - name: Save build | 77 | - name: Save build |
78 | uses: actions/upload-artifact@v3 | 78 | uses: actions/upload-artifact@v4 |
79 | with: | 79 | with: |
80 | name: artifacts | 80 | name: artifacts |
81 | path: build/artifacts/ | 81 | path: build/artifacts/ |
@@ -97,8 +97,8 @@ jobs: | |||
97 | 97 | ||
98 | # Do NOT publish logs on `master` branch as they may contain secrets in them. | 98 | # Do NOT publish logs on `master` branch as they may contain secrets in them. |
99 | - name: Save logs | 99 | - name: Save logs |
100 | if: github.ref != 'refs/heads/master' && (success() || failure()) | 100 | if: github.ref != 'refs/heads/master' && always() |
101 | uses: actions/upload-artifact@v3 | 101 | uses: actions/upload-artifact@v4 |
102 | with: | 102 | with: |
103 | name: logs_${{ github.run_id }} | 103 | name: logs_${{ github.run_id }} |
104 | path: build/logs/ | 104 | path: build/logs/ |