File tree 3 files changed +7
-7
lines changed
01_06-caching-between-workflow-runs
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -11,18 +11,18 @@ jobs:
11
11
- name : Create a tag for the archive
12
12
run : echo "::set-output name=TAG::$(date +%F)"
13
13
id : tag
14
-
14
+
15
15
- name : Starting the nightly build for ${{ steps.tag.outputs.TAG }}
16
16
run : echo "The tag is ${{ steps.tag.outputs.TAG }}"
17
-
17
+
18
18
- name : Check out the code
19
19
uses : actions/checkout@v2
20
-
20
+
21
21
- name : Create the artifact
22
22
run : tar -cvf nightly-${{ steps.tag.outputs.TAG }}.tar ./*
23
-
23
+
24
24
- name : Upload the artifact
25
- uses : actions/upload-artifact@v2
25
+ uses : actions/upload-artifact@v4
26
26
with :
27
27
name : nightly-${{ steps.tag.outputs.TAG }}.tar
28
28
path : nightly-${{ steps.tag.outputs.TAG }}.tar
Original file line number Diff line number Diff line change 19
19
- name : Build the hugo executable
20
20
run : go install --tags extended
21
21
22
- - uses : actions/upload-artifact@v2
22
+ - uses : actions/upload-artifact@v4
23
23
with :
24
24
name : hugo
25
25
path : /home/runner/go/bin/hugo
Original file line number Diff line number Diff line change 27
27
- name : Build the hugo executable
28
28
run : go install --tags extended
29
29
30
- - uses : actions/upload-artifact@v2
30
+ - uses : actions/upload-artifact@v4
31
31
with :
32
32
name : hugo
33
33
path : /home/runner/go/bin/hugo
You can’t perform that action at this time.
0 commit comments