Skip to content

Commit 553104b

Browse files
committed
build fixes
1 parent 14ec6ea commit 553104b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
uses: docker/build-push-action@v3
4141
with:
4242
context: .
43-
push: ${{ github.event_name == 'push' }}
43+
push: ${{ github.event_name == 'push' || github.event_name == 'workflow_call' }}
4444
tags: crenshawdotdev/argocd-executor-plugin:${{ inputs.tag || 'latest' }}
4545
cache-from: type=gha
4646
cache-to: type=gha,mode=max

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ jobs:
4040
- name: Update install manifest
4141
run: |
4242
# Download the binary
43-
curl -sLO https://github.com/argoproj/argo-workflows/releases/download/v3.4.3/argo-darwin-amd64.gz
44-
gunzip argo-darwin-amd64.gz
45-
chmod +x argo-darwin-amd64
43+
curl -sLO https://github.com/argoproj/argo-workflows/releases/download/v3.4.3/argo-linux-amd64.gz
44+
gunzip argo-linux-amd64.gz
45+
chmod +x argo-linux-amd64
4646
./argo-darwin-amd64 executor-plugin build ./manifests
4747
- name: Push release tag
4848
run: |

0 commit comments

Comments
 (0)