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 3f1d450 commit b1f3c38Copy full SHA for b1f3c38
.github/workflows/publish.yaml
@@ -26,19 +26,12 @@ jobs:
26
- name: Set up Docker Buildx
27
uses: docker/setup-buildx-action@v3
28
29
- - name: Prepare tags
30
- id: prepare_tags
31
- run: |
32
- if [ -z "${{ github.event.inputs.version }}" ]; then
33
- echo "TAGS=latest" >> $GITHUB_ENV
34
- else
35
- echo "TAGS=latest,${{ github.event.inputs.version }}" >> $GITHUB_ENV
36
- fi
37
-
38
- name: Build and Push Docker Image
39
uses: docker/build-push-action@v6
40
with:
41
context: .
42
platforms: linux/amd64,linux/arm64
43
push: true
44
- tags: daido1976/aws-lambda-function-url-emulator:${{ steps.prepare_tags.outputs.TAGS }}
+ tags: |
+ daido1976/aws-lambda-function-url-emulator:latest
+ ${{ github.event.inputs.version && 'daido1976/aws-lambda-function-url-emulator:${{ github.event.inputs.version }}' }}
0 commit comments