File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 17
17
steps :
18
18
- name : make date tag
19
19
id : mkdatetag
20
- run : echo "::set-output name= dtag:: $(date +%Y%m%d-%H%M)"
20
+ run : echo "dtag= $(date +%Y%m%d-%H%M)" >> $GITHUB_OUTPUT
21
21
22
22
build :
23
23
runs-on : ubuntu-latest
42
42
# This causes the tag_list array to be comma-separated below,
43
43
# which is required for build-push-action
44
44
IFS=,
45
- echo "::set-output name= taglist:: ${tag_list[*]}"
45
+ echo "taglist= ${tag_list[*]}" >> $GITHUB_OUTPUT
46
46
47
47
- name : Set up Docker Buildx
48
48
uses : docker/setup-buildx-action@v1
Original file line number Diff line number Diff line change 11
11
- uses : actions/checkout@v2
12
12
- id : python-files
13
13
run : |
14
- echo “ filelist=:$(find . -type f -exec awk ' /^#!.*python/{print FILENAME} {nextfile}' {} + | tr '\n' ' ')” >> $GITHUB_OUTPUT
14
+ echo " filelist=:$(find . -type f -exec awk ' /^#!.*python/{print FILENAME} {nextfile}' {} + | tr '\n' ' ')" >> $GITHUB_OUTPUT
15
15
16
16
pylint :
17
17
runs-on : ubuntu-20.04
You can’t perform that action at this time.
0 commit comments