We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 818e0ae commit f58aeefCopy full SHA for f58aeef
1 file changed
.github/workflows/pr_check.yml
@@ -27,6 +27,10 @@ jobs:
27
run: |
28
MATRIX="{\"include\":[{\"bioc_version\":\"$GITHUB_REF_NAME\"}]}"
29
echo "matrix=$MATRIX" >> $GITHUB_OUTPUT
30
+ - name: Check for Dockerfile
31
+ id: dockfile_check
32
+ run: |
33
+ echo "exists=$( [ -f ./inst/docker/pkg/Dockerfile ] && echo true || echo false )" >> $GITHUB_OUTPUT
34
35
check:
36
needs: set-matrix
@@ -117,7 +121,7 @@ jobs:
117
121
path: docs
118
122
119
123
dock:
120
- if: ${{ github.ref == 'refs/heads/devel' }}
124
+ if: ${{ github.ref == 'refs/heads/devel' && steps.dockerfile_check.outputs.exists == 'true' }}
125
runs-on: ubuntu-24.04
126
needs: check
127
steps:
0 commit comments