Skip to content

Commit 64c3b6e

Browse files
committed
correctly pass build args
1 parent b11888f commit 64c3b6e

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/docker-publish.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,20 @@ name: Docker
22

33
on:
44
schedule:
5-
- cron: '44 0 * * *'
5+
- cron: "44 0 * * *"
66
push:
7-
branches: [ "master" ]
7+
branches: ["master"]
88
# Publish semver tags as releases.
9-
tags: [ '*.*.*' ]
9+
tags: ["*.*.*"]
1010
pull_request:
11-
branches: [ "master" ]
11+
branches: ["master"]
1212

1313
env:
1414
# Use docker.io for Docker Hub if empty
1515
REGISTRY: ghcr.io
1616
# github.repository as <account>/<repo>
1717
IMAGE_NAME: ${{ github.repository }}
1818

19-
2019
jobs:
2120
build:
2221
runs-on: ubuntu-latest
@@ -67,5 +66,5 @@ jobs:
6766
platforms: linux/amd64,linux/arm64/v8
6867
provenance: true
6968
sbom: true
70-
env:
71-
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
69+
build-args: |
70+
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}

0 commit comments

Comments
 (0)