We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8321e4 commit 56e01b7Copy full SHA for 56e01b7
1 file changed
.github/workflows/ci.yml
@@ -47,24 +47,13 @@ jobs:
47
echo "Generated tag: ${TAG}"
48
echo "Generated image: ${IMAGE}"
49
50
- - name: Build development image
51
- run: docker build --target development -t simple-ci:dev .
52
-
53
- name: Build production image
54
run: docker build --target production -t simple-ci:prod .
55
56
- name: Save images
57
run: |
58
- docker save simple-ci:dev | gzip > dev-image.tar.gz
59
docker save simple-ci:prod | gzip > prod-image.tar.gz
60
61
- - name: Upload dev image artifact
62
- uses: actions/upload-artifact@v4
63
- with:
64
- name: dev-image
65
- path: dev-image.tar.gz
66
- retention-days: 1
67
68
- name: Upload prod image artifact
69
uses: actions/upload-artifact@v4
70
with:
0 commit comments