Skip to content

Commit 17a57be

Browse files
authored
Merge pull request #6 from Sauer02/dev
use different docker login
2 parents faf73c1 + 3177dc0 commit 17a57be

File tree

1 file changed

+57
-10
lines changed

1 file changed

+57
-10
lines changed

.github/workflows/nextjs.yml

+57-10
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ env:
1313
DOCKER_USER: ${{secrets.DOCKER_USER}}
1414
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}}
1515
REPO_NAME: ${{secrets.REPO_NAME}}
16+
# Use docker.io for Docker Hub if empty
17+
REGISTRY: docker.io
18+
# github.repository as <account>/<repo>
19+
IMAGE_NAME: csauercampus
1620

1721
jobs:
1822
# Linting Job
@@ -73,16 +77,59 @@ jobs:
7377
- name: Run npm audit
7478
run: npm audit --audit-level=high
7579

76-
- name: docker login
77-
run: | # log into docker hub account
78-
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
80+
# Install the cosign tool except on PR
81+
- name: Install cosign
82+
if: github.event_name != 'pull_request'
83+
uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 #v3.5.0
84+
with:
85+
cosign-release: "v2.2.4"
7986

80-
- name: Get current date # get the date of the build
81-
id: date
82-
run: echo "::set-output name=date::$(date +'%Y-%m-%d--%M-%S')"
87+
# Set up BuildKit Docker container builder to be able to build
88+
# multi-platform images and export cache
89+
- name: Set up Docker Buildx
90+
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0
8391

84-
- name: Build the Docker image # push The image to the docker hub
85-
run: docker build . --file Dockerfile --tag $DOCKER_USER/$REPO_NAME:${{ steps.date.outputs.date }}
92+
# Login against a Docker registry except on PR
93+
- name: Log into registry ${{ env.REGISTRY }}
94+
if: github.event_name != 'pull_request'
95+
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
96+
with:
97+
registry: ${{ env.REGISTRY }}
98+
username: ${{ env.DOCKER_USER }}
99+
password: ${{ env.DOCKER_PASSWORD }}
100+
101+
# Extract metadata (tags, labels) for Docker
102+
# https://github.com/docker/metadata-action
103+
- name: Extract Docker metadata
104+
id: meta
105+
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0
106+
with:
107+
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
86108

87-
- name: Docker Push
88-
run: docker push $DOCKER_USER/$REPO_NAME:${{ steps.date.outputs.date }}
109+
# Build and push Docker image with Buildx (don't push on PR)
110+
# https://github.com/docker/build-push-action
111+
- name: Build and push Docker image
112+
id: build-and-push
113+
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0
114+
with:
115+
context: .
116+
push: ${{ github.event_name != 'pull_request' }}
117+
tags: ${{ steps.meta.outputs.tags }}
118+
labels: ${{ steps.meta.outputs.labels }}
119+
cache-from: type=gha
120+
cache-to: type=gha,mode=max
121+
122+
# Sign the resulting Docker image digest except on PRs.
123+
# This will only write to the public Rekor transparency log when the Docker
124+
# repository is public to avoid leaking data. If you would like to publish
125+
# transparency data even for private images, pass --force to cosign below.
126+
# https://github.com/sigstore/cosign
127+
- name: Sign the published Docker image
128+
if: ${{ github.event_name != 'pull_request' }}
129+
env:
130+
# https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable
131+
TAGS: ${{ steps.meta.outputs.tags }}
132+
DIGEST: ${{ steps.build-and-push.outputs.digest }}
133+
# This step uses the identity token to provision an ephemeral certificate
134+
# against the sigstore community Fulcio instance.
135+
run: echo "${TAGS}" | xargs -I {} cosign sign --yes {}@${DIGEST}

0 commit comments

Comments
 (0)