We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62ec2da commit 8a5c7d0Copy full SHA for 8a5c7d0
.github/workflows/build.yml
@@ -17,12 +17,15 @@ jobs:
17
run: make pull
18
- name: Build image
19
run: make build
20
- - name: run appCD
21
- run: |
22
- docker pull ghcr.io/appcd-dev/appcd-dist/appcd-cli:cli
23
- docker run --rm \
24
- --workdir=/app/scan \
25
- -v $PWD:/app/scan ghcr.io/appcd-dev/appcd-dist/appcd-cli:cli \
26
- generate --lang Python --output=/code/.appcd/charts
27
- cd .appcd/charts && ls
28
- unzip code.zip && rm code.zip
+ - name: Generate IAC for main branch
+ env:
+ APPCD_TOKEN: ${{ secrets.APPCD_TOKEN }}
+ APPCD_URL: ${{ secrets.APPCD_URL }}
+ uses: appcd-dev/action@v0.0.1
+ with:
+ cloud: 'aws'
+ language: 'Python'
+ outputDir: './.appcd/charts'
29
+ scanPath: '.'
30
+ targetCompute: 'k8s'
31
+
0 commit comments