File tree 4 files changed +7
-9
lines changed
4 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 46
46
id : diff
47
47
48
48
# If index.js was different than expected, upload the expected version as an artifact
49
- - uses : actions/upload-artifact@v4-beta
49
+ - uses : actions/upload-artifact@v4
50
50
if : ${{ failure() && steps.diff.conclusion == 'failure' }}
51
51
with :
52
52
name : dist
Original file line number Diff line number Diff line change 81
81
82
82
# Download Artifact #1 and verify the correctness of the content
83
83
- name : ' Download artifact #1'
84
- uses : actions/download-artifact@v4-beta
84
+ uses : actions/download-artifact@v4
85
85
with :
86
86
name : ' Artifact-A-${{ matrix.runs-on }}'
87
87
path : some/new/path
@@ -101,7 +101,7 @@ jobs:
101
101
102
102
# Download Artifact #2 and verify the correctness of the content
103
103
- name : ' Download artifact #2'
104
- uses : actions/download-artifact@v4-beta
104
+ uses : actions/download-artifact@v4
105
105
with :
106
106
name : ' Artifact-Wildcard-${{ matrix.runs-on }}'
107
107
path : some/other/path
@@ -122,7 +122,7 @@ jobs:
122
122
123
123
# Download Artifact #4 and verify the correctness of the content
124
124
- name : ' Download artifact #4'
125
- uses : actions/download-artifact@v4-beta
125
+ uses : actions/download-artifact@v4
126
126
with :
127
127
name : ' Multi-Path-Artifact-${{ matrix.runs-on }}'
128
128
path : multi/artifact
Original file line number Diff line number Diff line change @@ -271,7 +271,7 @@ You can use `~` in the path input as a substitute for `$HOME`. Basic tilde expan
271
271
echo hello > ~/new/artifact/world.txt
272
272
- uses: actions/upload-artifact@v4
273
273
with:
274
- name: Artifacts-V4-beta
274
+ name: my-artifacts
275
275
path: ~/new/**/*
276
276
` ` `
277
277
Original file line number Diff line number Diff line change 1
- import * as core from '../node_modules/@actions/core/'
2
- import artifact , {
3
- UploadArtifactOptions
4
- } from '../node_modules/@actions/artifact/lib/artifact'
1
+ import * as core from '@actions/core'
2
+ import artifact , { UploadArtifactOptions } from '@actions/artifact'
5
3
import { findFilesToUpload } from './search'
6
4
import { getInputs } from './input-helper'
7
5
import { NoFileOptions } from './constants'
You can’t perform that action at this time.
0 commit comments