Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
Signed-off-by: Radoslav Dimitrov <[email protected]>
  • Loading branch information
rdimitrov committed Jan 29, 2024
1 parent a9f678a commit abd15de
Show file tree
Hide file tree
Showing 8 changed files with 226 additions and 143 deletions.
17 changes: 0 additions & 17 deletions .github/workflows/1password.yml

This file was deleted.

35 changes: 35 additions & 0 deletions .github/workflows/build-binary-signed-ghat.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build a binary - Signed with GH Attestations

on:
workflow_dispatch:

jobs:
build:
permissions:
id-token: write
packages: write
contents: write
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'

- name: Run Go build
run: |
go build -v -o demo-go-binary ./...
- name: Sign artifact
uses: github-early-access/generate-build-provenance@main
with:
subject-path: '${{ github.workspace }}/demo-go-binary'

- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: demo-go-binary
path: demo-go-binary
35 changes: 35 additions & 0 deletions .github/workflows/build-binary-unsigned.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build a binary - Unsigned

on:
workflow_dispatch:

jobs:
build:
permissions:
id-token: write
packages: write
contents: write
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'

- name: Run Go build
run: |
go build -v -o demo-go-binary ./...
# - name: Sign artifact
# uses: github-early-access/generate-build-provenance@main
# with:
# subject-path: '${{ github.workspace }}/demo-go-binary'

- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: demo-go-binary
path: demo-go-binary
60 changes: 60 additions & 0 deletions .github/workflows/build-image-signed-cosign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Build an image - Signed with Cosign (tags - latest, daily)
on:
workflow_dispatch:

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
build:

runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write

steps:
- name: Checkout repository
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744

- name: Install Cosign
uses: sigstore/cosign-installer@6e04d228eb30da1757ee4e1dd75a0ec73a653e06 #v3.1.1
with:
cosign-release: 'v2.1.1'

- name: Setup Docker buildx
uses: docker/setup-buildx-action@79abd3f86f79a9d68a23c75a09a9a85889262adf

- name: Log into registry ${{ env.REGISTRY }}
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@ac9327eae2b366085ac7f6a2d02df8aa8ead720a
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ghcr.io/${{ github.repository }}:latest,ghcr.io/${{ github.repository }}:daily
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max


- name: Sign the published Docker image
env:
DIGEST: ${{ steps.build-and-push.outputs.digest }}
run: |
echo "ghcr.io/${{ github.repository }}:daily" | xargs -I {} cosign sign --yes {}@${DIGEST}
echo "ghcr.io/${{ github.repository }}:latest" | xargs -I {} cosign sign --yes {}@${DIGEST}
37 changes: 37 additions & 0 deletions .github/workflows/build-image-signed-ghat.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Build an image - Signed with GH Attestations (tags - latest)
on:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
permissions:
id-token: write
packages: write
contents: write

steps:
- name: Checkout repository
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744

- name: Log into ghcr.io
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push image
id: push-step
uses: docker/build-push-action@ac9327eae2b366085ac7f6a2d02df8aa8ead720a
with:
push: true
tags: ghcr.io/${{ github.repository }}:latest
context: .

- name: Attest image
uses: github-early-access/generate-build-provenance@main
with:
subject-name: ghcr.io/${{ github.repository }}
subject-digest: ${{ steps.push-step.outputs.digest }}
push-to-registry: true
59 changes: 59 additions & 0 deletions .github/workflows/build-image-unsigned.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Build an image - Unsigned (tags - latest, daily)
on:
workflow_dispatch:

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
build:

runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write

steps:
- name: Checkout repository
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744

# - name: Install Cosign
# uses: sigstore/cosign-installer@6e04d228eb30da1757ee4e1dd75a0ec73a653e06 #v3.1.1
# with:
# cosign-release: 'v2.1.1'

- name: Setup Docker buildx
uses: docker/setup-buildx-action@79abd3f86f79a9d68a23c75a09a9a85889262adf

- name: Log into registry ${{ env.REGISTRY }}
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@ac9327eae2b366085ac7f6a2d02df8aa8ead720a
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ghcr.io/${{ github.repository }}:latest,ghcr.io/${{ github.repository }}:daily
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max

# - name: Sign the published Docker image
# env:
# DIGEST: ${{ steps.build-and-push.outputs.digest }}
# run: |
# echo "ghcr.io/${{ github.repository }}:daily" | xargs -I {} cosign sign --yes {}@${DIGEST}
# echo "ghcr.io/${{ github.repository }}:latest" | xargs -I {} cosign sign --yes {}@${DIGEST}
91 changes: 0 additions & 91 deletions .github/workflows/build.yml

This file was deleted.

35 changes: 0 additions & 35 deletions .github/workflows/main.yml

This file was deleted.

0 comments on commit abd15de

Please sign in to comment.