Skip to content

Commit 3770a02

Browse files
nothing to see here
1 parent 51861c8 commit 3770a02

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.git*

.github/workflows/docker-publish.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,20 @@ name: Docker
77

88
on:
99
push:
10-
branches: [ "master" ]
10+
branches: ["master"]
1111
# Publish semver tags as releases.
12-
tags: [ 'v*.*.*' ]
12+
tags: ["v*.*.*"]
1313
pull_request:
14-
branches: [ "master" ]
14+
branches: ["master"]
1515

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

22-
2322
jobs:
2423
build:
25-
2624
runs-on: ubuntu-latest
2725
permissions:
2826
contents: read
@@ -32,6 +30,8 @@ jobs:
3230
id-token: write
3331

3432
steps:
33+
- name: Checkout repository
34+
uses: actions/checkout@v3
3535
# Workaround: https://github.com/docker/build-push-action/issues/461
3636
- name: Setup Docker buildx
3737
uses: docker/setup-buildx-action@79abd3f86f79a9d68a23c75a09a9a85889262adf
@@ -66,7 +66,6 @@ jobs:
6666
# cache-from: type=gha
6767
# cache-to: type=gha,mode=max
6868

69-
7069
# # Sign the resulting Docker image digest except on PRs.
7170
# # This will only write to the public Rekor transparency log when the Docker
7271
# # repository is public to avoid leaking data. If you would like to publish

0 commit comments

Comments
 (0)