generated from argoproj-labs/argo-workflows-hello-executor-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
32 lines (27 loc) · 731 Bytes
/
codegen.yaml
File metadata and controls
32 lines (27 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Codegen
on:
push:
branches:
- main
pull_request:
branches:
- main
types: [ opened, synchronize, reopened ]
permissions:
contents: read
jobs:
publish:
if: github.repository == 'crenshaw-dev/github-executor-plugin'
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- run: |
# Install Argo CLI.
curl -sLO https://github.com/argoproj/argo-workflows/releases/download/v3.4.4/argo-linux-amd64.gz
gunzip argo-linux-amd64.gz
chmod +x argo-linux-amd64
mv ./argo-linux-amd64 /usr/local/bin/argo
argo version
make manifests
git diff --exit-code