We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f3a8dd6 + 39e4a74 commit 4198076Copy full SHA for 4198076
.github/workflows/docker-image.yml
@@ -5,6 +5,10 @@ on:
5
types: [published]
6
workflow_dispatch:
7
8
+env:
9
+ REGISTRY: ghcr.io
10
+ IMAGE_NAME: ${{ github.repository }}
11
+
12
jobs:
13
build:
14
runs-on: ubuntu-latest
@@ -23,7 +27,7 @@ jobs:
23
27
id: meta
24
28
uses: docker/metadata-action@v5
25
29
with:
26
- images: ${{ env.REGISTRY_IMAGE }}
30
+ images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
31
- name: Set up QEMU
32
uses: docker/setup-qemu-action@v3
33
- name: Set up Docker Buildx
@@ -34,4 +38,5 @@ jobs:
34
38
context: .
35
39
platforms: linux/amd64,linux/arm64,linux/arm/v7
36
40
push: true
37
- tags: ghcr.io/wavelog/wavelog:${{ github.ref_name == 'master' && 'latest' || github.ref_name }}
41
+ tags: ${{ steps.meta.outputs.tags }}
42
+ labels: ${{ steps.meta.outputs.labels }}
0 commit comments