Skip to content

Commit a89263c

Browse files
committed
use latest image
1 parent 8b8dc48 commit a89263c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/appcd-iac-pr-diff.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ jobs:
2525
--workdir=/code \
2626
-v ./main_branch:/code \
2727
-v ./artifact/main:/artifact/main \
28-
ghcr.io/appcd-dev/appcd-dist/appcd:v0.9.0 \
28+
--entrypoint=appcd \
29+
ghcr.io/appcd-dev/appcd-dist/appcd-cli:v0.9.1 \
2930
generate --lang Python --output=artifact/main/.appcd/charts --iac-type Helm
3031
cd artifact/main/.appcd/charts
3132
unzip DogeAPI.zip && rm DogeAPI.zip
@@ -42,13 +43,14 @@ jobs:
4243
run: echo ${{ steps.extract_branch.outputs.branch }}
4344
- name: Generate IaC from PR branch
4445
run: |
45-
docker pull ghcr.io/appcd-dev/appcd-dist/appcd:v0.9.0
46+
docker pull ghcr.io/appcd-dev/appcd-dist/appcd-cli:v0.9.0
4647
mkdir -p artifact/${{ steps.extract_branch.outputs.branch }}/
4748
docker run --rm \
4849
--workdir=/code \
4950
-v ./pr_branch/:/code \
5051
-v ./artifact/${{ steps.extract_branch.outputs.branch }}:/artifact/${{ steps.extract_branch.outputs.branch }} \
51-
ghcr.io/appcd-dev/appcd-dist/appcd:v0.9.0 \
52+
--entrypoint=appcd \
53+
ghcr.io/appcd-dev/appcd-dist/appcd-cli:v0.9.1 \
5254
generate --lang Python --iac-type Helm --output=artifact/${{ steps.extract_branch.outputs.branch }}/.appcd/charts
5355
cd artifact/${{ steps.extract_branch.outputs.branch }}/.appcd/charts
5456
unzip DogeAPI.zip && rm DogeAPI.zip

0 commit comments

Comments
 (0)