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 6ddff57Copy full SHA for 6ddff57
.github/workflows/deploy-DEV.yml
@@ -154,13 +154,18 @@ jobs:
154
BUILD_DATE=${{ env.BUILD_DATE }}
155
BUILD_REVISION=${{ github.sha }}
156
BUILD_VERSION=${{ github.sha }}
157
- load: true
158
push: false
159
secrets: |
160
GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
161
tags: |
162
oxsecurity/megalinter:${{ steps.image_tag.outputs.tag }}
163
timeout-minutes: 90
+ outputs: type=oci,dest=/tmp/image.tar
164
+ - name: Load OCI
165
+ shell: bash
166
+ run: |
167
+ docker load --input /tmp/image.tar
168
+ rm -f /tmp/image.tar
169
170
####################################
171
# Build image (full for main repo) #
0 commit comments