We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76b20c4 commit cfff6a9Copy full SHA for cfff6a9
1 file changed
.github/workflows/delivery.yml
@@ -5,25 +5,27 @@ on:
5
6
permissions:
7
contents: read
8
+ packages: write
9
10
jobs:
11
build:
12
uses: docker/github-builder/.github/workflows/build.yml@v1
13
14
15
id-token: write
16
17
with:
18
output: image
19
push: true
20
platforms: linux/amd64,linux/arm64
- meta-images: user/app
21
+ meta-images: ghcr.io/${{ github.repository }}
22
meta-tags: |
23
type=ref,event=branch
24
type=ref,event=pr
25
type=semver,pattern={{version}}
26
type=semver,pattern={{major}}.{{minor}}
27
secrets:
28
registry-auths: |
- - registry: docker.io
- username: ${{ vars.DOCKERHUB_USERNAME }}
29
- password: ${{ secrets.DOCKERHUB_TOKEN }}
+ - registry: ghcr.io
30
+ username: ${{ github.actor }}
31
+ password: ${{ secrets.GITHUB_TOKEN }}
0 commit comments