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 d87ebd5 commit ebfce01Copy full SHA for ebfce01
.github/workflows/build.yaml
@@ -12,7 +12,7 @@ on:
12
inputs:
13
tag:
14
type: string
15
- default: 'latest'
+ required: true
16
17
permissions:
18
contents: read
@@ -31,14 +31,14 @@ jobs:
31
- name: Login to Docker Hub
32
uses: docker/login-action@v2
33
with:
34
- username: ${{ secrets.DOCKERHUB_USERNAME }}
+ username: crenshawdotdev
35
password: ${{ secrets.DOCKERHUB_PASSWORD }}
36
- name: Build and push
37
uses: docker/build-push-action@v3
38
39
context: .
40
push: ${{ github.event_name == 'push' }}
41
- tags: crenshawdotdev/argocd-executor-plugin:${{ inputs.tag }}
+ tags: crenshawdotdev/argocd-executor-plugin:${{ inputs.tag || 'latest' }}
42
- name: Install cosign
43
uses: sigstore/cosign-installer@main
44
0 commit comments