File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -249,6 +249,8 @@ jobs:
249
249
runs-on : ubuntu-latest
250
250
steps :
251
251
- uses : actions/checkout@v4
252
+ with :
253
+ fetch-depth : 0
252
254
- name : record cwltool version
253
255
run : pip install -U setuptools wheel && pip install setuptools_scm[toml] && python setup.py --version
254
256
- name : build & test cwltool_module container
Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
steps :
11
11
- uses : actions/checkout@v4
12
+ with :
13
+ fetch-depth : 0
12
14
- name : Get image tags
13
15
id : image_tags
14
16
run : |
15
- echo -n ::set-output "name= IMAGE_TAGS:: ${GITHUB_REF#refs/*/}"
17
+ echo -n " IMAGE_TAGS= ${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
16
18
- name : record cwltool version
17
- run : pip install setuptools_scm[toml] wheel && python setup.py --version
19
+ run : |
20
+ pip install "setuptools>=61"
21
+ pip install setuptools_scm[toml] wheel
22
+ python setup.py --version
18
23
- name : Set up QEMU
19
24
uses : docker/setup-qemu-action@v3
20
25
- name : Set up Docker Buildx
35
40
- name : Build and publish cwltool_module image to Quay
36
41
uses : docker/build-push-action@v5
37
42
with :
43
+ context : .
38
44
file : cwltool.Dockerfile
39
45
tags : quay.io/commonwl/cwltool_module:${{ steps.image_tags.outputs.IMAGE_TAGS }},quay.io/commonwl/cwltool_module:latest
40
46
target : module
45
51
- name : Build and publish cwltool image to Quay
46
52
uses : docker/build-push-action@v5
47
53
with :
54
+ context : .
48
55
file : cwltool.Dockerfile
49
56
tags : quay.io/commonwl/cwltool:${{ steps.image_tags.outputs.IMAGE_TAGS }},quay.io/commonwl/cwltool:latest
50
57
platforms : linux/amd64,linux/arm64
You can’t perform that action at this time.
0 commit comments