We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfcf5a4 commit 4fa6afcCopy full SHA for 4fa6afc
.github/workflows/deploy-DEV.yml
@@ -154,13 +154,19 @@ jobs:
154
BUILD_DATE=${{ env.BUILD_DATE }}
155
BUILD_REVISION=${{ github.sha }}
156
BUILD_VERSION=${{ github.sha }}
157
- load: true
+ load: false
158
push: false
159
secrets: |
160
GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
161
tags: |
162
oxsecurity/megalinter:${{ steps.image_tag.outputs.tag }}
163
+ outputs: type=oci,dest=/tmp/image.tar
164
timeout-minutes: 90
165
+ - name: Load OCI
166
+ shell: bash
167
+ run: |
168
+ docker load --input /tmp/image.tar
169
+ rm -f /tmp/image.tar
170
171
####################################
172
# Build image (full for main repo) #
0 commit comments