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 325cf3d + 72be26e commit b9ae2efCopy full SHA for b9ae2ef
.github/workflows/docker-image.yml
@@ -11,8 +11,10 @@ jobs:
11
build:
12
13
runs-on: ubuntu-latest
14
+ env:
15
+ DOCKER_BUILDKIT: 1
16
17
steps:
18
- uses: actions/checkout@v2
19
- name: Build the Docker image
- run: docker build . --file Dockerfile --build-arg GH_TOKEN=${{ secrets.GITHUB_TOKEN }} --tag ghcr.io/fails-components/notepadhandler:$(date +%s)
20
+ run: export GH_TOKEN=${{ secrets.GITHUB_TOKEN }}; docker build . --file Dockerfile --secret id=GH_TOKEN --tag ghcr.io/fails-components/notepadhandler:$(date +%s)
0 commit comments