We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e83036e commit 0dd7727Copy full SHA for 0dd7727
.github/workflows/upload_to_dockerhub.yml
@@ -2,6 +2,8 @@ name: Build Base and Extpar images and upload to Docker Hub
2
3
on:
4
push:
5
+ branches:
6
+ - master
7
tags:
8
- '*'
9
@@ -39,5 +41,7 @@ jobs:
39
41
context: .
40
42
file: ./Dockerfile.extpar
43
push: true
- tags: c2sm/extpar:${{ github.ref_name }}
- platforms: linux/amd64,linux/arm64
44
+ tags: |
45
+ c2sm/extpar:${{ github.ref_name }}
46
+ ${{ github.ref_name == 'refs/heads/master' && 'c2sm/extpar:latest' || '' }}
47
+ platforms: linux/amd64,linux/arm64
0 commit comments