We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a77803 commit 20e02e6Copy full SHA for 20e02e6
.github/workflows/test3.yaml
@@ -0,0 +1,29 @@
1
+name: Argocd
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ workflow_dispatch:
8
9
+jobs:
10
+ update-argocd:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout repository
14
+ uses: actions/checkout@v4
15
16
+ - name: Set up Git
17
+ run: |
18
+ git config --global user.email "[email protected]"
19
+ git config --global user.name "GitHub Actions"
20
21
+ - name: Clone ArgoCD repository
22
23
+ with:
24
+ repository: grasshopper-labs/argocd
25
+ ssh-key: ${{ secrets.ARGOCD_PRIVATE_KEY }}
26
27
+ - name: debug
28
29
+ ls
.github/workflows/test2.yaml test2.yaml
0 commit comments