We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50fcf08 commit a2a3c33Copy full SHA for a2a3c33
1 file changed
.github/workflows/release-image.yml
@@ -26,16 +26,6 @@ jobs:
26
username: ${{ github.actor }}
27
password: ${{ secrets.GITHUB_TOKEN }}
28
29
- - name: Docker metadata
30
- id: meta
31
- uses: docker/metadata-action@v5
32
- with:
33
- images: ghcr.io/${{ github.repository_owner }}/devcontainer
34
- tags: |
35
- type=sha
36
- type=raw,value=latest
37
- type=schedule,pattern={{date 'YYYYMMDD'}}
38
-
39
- name: Set up Docker Buildx
40
uses: docker/setup-buildx-action@v3
41
@@ -44,7 +34,8 @@ jobs:
44
with:
45
context: ./image
46
push: true
47
- tags: ${{ steps.meta.outputs.tags }}
48
- labels: ${{ steps.meta.outputs.labels }}
+ tags: |
+ ghcr.io/${{ github.repository_owner }}/devcontainer:latest
+ ghcr.io/${{ github.repository_owner }}/devcontainer:${{ github.sha }}
49
cache-from: type=gha
50
cache-to: type=gha,mode=max
0 commit comments