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 1ead65f commit 4cc26daCopy full SHA for 4cc26da
1 file changed
.github/workflows/test_image.yml
@@ -1,6 +1,9 @@
1
name: Test Docker Image
2
3
on:
4
+ push:
5
+ branches:
6
+ - fix/smb-session-lifecycle
7
workflow_dispatch:
8
inputs:
9
image_tag:
@@ -126,11 +129,11 @@ jobs:
126
129
file: Dockerfile.ci
127
130
push: true
128
131
build-args: |
- BASE_IMAGE_TAG=${{ inputs.base_image_tag }}
132
+ BASE_IMAGE_TAG=${{ inputs.base_image_tag || 'base' }}
133
tags: |
134
${{ steps.meta.outputs.image }}:${{ steps.meta.outputs.tag }}
135
${{ steps.meta.outputs.image }}:${{ github.sha }}
- platforms: ${{ inputs.platforms }}
136
+ platforms: ${{ inputs.platforms || 'linux/amd64,linux/arm64' }}
137
138
- name: Print image
139
run: |
0 commit comments