File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11
11
uses : actions/setup-python@v4
12
12
with :
13
13
python-version : 3.x
14
- if : ${{ runner.arch == 'X64' }}
14
+ if : runner.arch == 'X64'
15
15
16
16
- name : Install Dev Dependencies 📦
17
17
run : |
Original file line number Diff line number Diff line change 38
38
# Also, they might have running or stopped containers,
39
39
# which are not cleaned up by `docker system prun`
40
40
- name : Reset docker state and cleanup artifacts 🗑️
41
- if : ${{ inputs.platform != 'x86_64' }}
41
+ if : inputs.platform != 'x86_64'
42
42
run : |
43
43
docker kill $(docker ps --quiet) || true
44
44
docker rm $(docker ps --all --quiet) || true
@@ -47,14 +47,14 @@ jobs:
47
47
shell : bash
48
48
49
49
- name : Load parent built image to Docker 📥
50
- if : ${{ inputs.parentImage != '' }}
50
+ if : inputs.parentImage != ''
51
51
uses : ./.github/actions/load-image
52
52
with :
53
53
image : ${{ inputs.parentImage }}
54
54
platform : ${{ inputs.platform }}
55
55
56
56
- name : Pull ubuntu:22.04 image 📥
57
- if : ${{ inputs.parentImage == '' }}
57
+ if : inputs.parentImage == ''
58
58
run : docker pull ubuntu:22.04
59
59
shell : bash
60
60
You can’t perform that action at this time.
0 commit comments