Skip to content

Commit 1ade290

Browse files
committed
build
1 parent 10f055f commit 1ade290

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,18 @@ jobs:
1111
timeout-minutes: 10
1212
steps:
1313
- uses: actions/checkout@v1
14+
with:
15+
fetch-depth: 1
1416
- name: pull latest
1517
run: make pull
1618
- name: Build image
1719
run: make build
18-
#- name: Test code format -- pre-commit
19-
# run: make lint
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

0 commit comments

Comments
 (0)