mirror of
https://github.com/actions/download-artifact.git
synced 2024-11-22 13:45:28 +00:00
Merge pull request #247 from actions/robherley/misc-updates
Some cleanup
This commit is contained in:
commit
4e2cbd8192
2
.github/workflows/check-dist.yml
vendored
2
.github/workflows/check-dist.yml
vendored
@ -46,7 +46,7 @@ jobs:
|
|||||||
id: diff
|
id: diff
|
||||||
|
|
||||||
# If index.js was different than expected, upload the expected version as an artifact
|
# If index.js was different than expected, upload the expected version as an artifact
|
||||||
- uses: actions/upload-artifact@v4-beta
|
- uses: actions/upload-artifact@v4
|
||||||
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
|
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
|
||||||
with:
|
with:
|
||||||
name: dist
|
name: dist
|
||||||
|
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
@ -48,13 +48,13 @@ jobs:
|
|||||||
echo "Hello world from file B" > path/to/artifact-B/file-B.txt
|
echo "Hello world from file B" > path/to/artifact-B/file-B.txt
|
||||||
|
|
||||||
- name: Upload artifact A
|
- name: Upload artifact A
|
||||||
uses: actions/upload-artifact@v4-beta
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Artifact-A-${{ matrix.runs-on }}
|
name: Artifact-A-${{ matrix.runs-on }}
|
||||||
path: path/to/artifact-A
|
path: path/to/artifact-A
|
||||||
|
|
||||||
- name: Upload artifact B
|
- name: Upload artifact B
|
||||||
uses: actions/upload-artifact@v4-beta
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Artifact-B-${{ matrix.runs-on }}
|
name: Artifact-B-${{ matrix.runs-on }}
|
||||||
path: path/to/artifact-B
|
path: path/to/artifact-B
|
||||||
|
Loading…
Reference in New Issue
Block a user