From e3bada847eda214e0924f41fa72d91e9bde0760a Mon Sep 17 00:00:00 2001 From: ripps818 Date: Mon, 19 Feb 2024 14:02:10 -0600 Subject: [PATCH 1/5] add action to auto-build latest image from master also tweaked work branch action --- .github/workflows/docker-publish-master.yml | 102 ++++++++++++++++++++ .github/workflows/docker-publish.yml | 4 +- 2 files changed, 105 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/docker-publish-master.yml diff --git a/.github/workflows/docker-publish-master.yml b/.github/workflows/docker-publish-master.yml new file mode 100644 index 0000000..0539b47 --- /dev/null +++ b/.github/workflows/docker-publish-master.yml @@ -0,0 +1,102 @@ +name: Create testing image + +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +on: + #schedule: + # - cron: '18 17 * * *' + push: + branches: [ "master" ] + #Publish semver tags as releases. + #tags: [ 'v*.*.*','latest' ] + pull_request: + branches: [ "master" ] + #workflow_dispatch: + #branches: [ "work" ] + +env: + # Use docker.io for Docker Hub if empty + REGISTRY: ghcr.io + # github.repository as / + IMAGE_NAME: ${{ github.repository }} + + +jobs: + build: + + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + # This is used to complete the identity challenge + # with sigstore/fulcio when running outside of PRs. + id-token: write + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + # Install the cosign tool except on PR + # https://github.com/sigstore/cosign-installer + - name: Install cosign + if: github.event_name != 'pull_request' + uses: sigstore/cosign-installer@6e04d228eb30da1757ee4e1dd75a0ec73a653e06 #v3.1.1 + with: + cosign-release: 'v2.1.1' + + # Set up BuildKit Docker container builder to be able to build + # multi-platform images and export cache + # https://github.com/docker/setup-buildx-action + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0 + + # Login against a Docker registry except on PR + # https://github.com/docker/login-action + - name: Log into registry ${{ env.REGISTRY }} + if: github.event_name != 'pull_request' + uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GHCR_TOKEN }} + + # Extract metadata (tags, labels) for Docker + # https://github.com/docker/metadata-action + - name: Extract Docker metadata + id: meta + uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + + # Build and push Docker image with Buildx (don't push on PR) + # https://github.com/docker/build-push-action + - name: Build and push Docker image + id: build-and-push + uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 + with: + context: . + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + cache-from: type=gha + cache-to: type=gha,mode=max + + # Sign the resulting Docker image digest except on PRs. + # This will only write to the public Rekor transparency log when the Docker + # repository is public to avoid leaking data. If you would like to publish + # transparency data even for private images, pass --force to cosign below. + # https://github.com/sigstore/cosign + - name: Sign the published Docker image + if: ${{ github.event_name != 'pull_request' }} + env: + # https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable + TAGS: | + type=raw,value=latest + type=raw,value=${{ github.sha }} + DIGEST: ${{ steps.build-and-push.outputs.digest }} + # This step uses the identity token to provision an ephemeral certificate + # against the sigstore community Fulcio instance. + run: echo "${TAGS}" | xargs -I {} cosign sign --yes {}@${DIGEST} diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index ebb4092..c7c4771 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -93,7 +93,9 @@ jobs: if: ${{ github.event_name != 'pull_request' }} env: # https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable - TAGS: testing + TAGS: | + type=raw,value=testing + type=raw,value=${{ github.sha }} DIGEST: ${{ steps.build-and-push.outputs.digest }} # This step uses the identity token to provision an ephemeral certificate # against the sigstore community Fulcio instance. From c80bb96b24004682b20e5ee045daab43e97956fc Mon Sep 17 00:00:00 2001 From: ripps818 Date: Mon, 19 Feb 2024 14:07:25 -0600 Subject: [PATCH 2/5] update names of image actions --- .github/workflows/docker-publish-master.yml | 2 +- .github/workflows/docker-publish.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-publish-master.yml b/.github/workflows/docker-publish-master.yml index 0539b47..332ab68 100644 --- a/.github/workflows/docker-publish-master.yml +++ b/.github/workflows/docker-publish-master.yml @@ -1,4 +1,4 @@ -name: Create testing image +name: Create Latest Image # This workflow uses actions that are not certified by GitHub. # They are provided by a third-party and are governed by diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index c7c4771..2255c79 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -1,4 +1,4 @@ -name: Create testing image +name: Create Testing Image # This workflow uses actions that are not certified by GitHub. # They are provided by a third-party and are governed by From 7eefe893319465febe0281b6ac2a9e5191d72c2c Mon Sep 17 00:00:00 2001 From: ripps818 Date: Mon, 19 Feb 2024 14:29:09 -0600 Subject: [PATCH 3/5] checking to see if TAGS variable works in Github actions --- .github/workflows/docker-publish.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 2255c79..0693ed2 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -22,7 +22,7 @@ env: REGISTRY: ghcr.io # github.repository as / IMAGE_NAME: ${{ github.repository }} - + TAGS: testing jobs: build: @@ -93,9 +93,7 @@ jobs: if: ${{ github.event_name != 'pull_request' }} env: # https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable - TAGS: | - type=raw,value=testing - type=raw,value=${{ github.sha }} + TAGS: ${{ steps.meta.outputs.tags }} DIGEST: ${{ steps.build-and-push.outputs.digest }} # This step uses the identity token to provision an ephemeral certificate # against the sigstore community Fulcio instance. From 5ffb6ba65b098da33c7779886b7fa357fb6d5aeb Mon Sep 17 00:00:00 2001 From: ripps818 Date: Mon, 19 Feb 2024 14:43:29 -0600 Subject: [PATCH 4/5] lets see if that fixes tags --- .github/workflows/docker-publish.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 0693ed2..51e5b76 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -22,7 +22,6 @@ env: REGISTRY: ghcr.io # github.repository as / IMAGE_NAME: ${{ github.repository }} - TAGS: testing jobs: build: @@ -70,6 +69,10 @@ jobs: uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + tags: | + type=raw,value=testing + flavor: + latest=false # Build and push Docker image with Buildx (don't push on PR) # https://github.com/docker/build-push-action From e2a3a766ae3ef428825b20e5857557a467f970b3 Mon Sep 17 00:00:00 2001 From: ripps818 Date: Mon, 19 Feb 2024 14:49:17 -0600 Subject: [PATCH 5/5] let's see if master will auto-build with versioned and latest images --- .github/workflows/docker-publish-master.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/docker-publish-master.yml b/.github/workflows/docker-publish-master.yml index 332ab68..ee895e7 100644 --- a/.github/workflows/docker-publish-master.yml +++ b/.github/workflows/docker-publish-master.yml @@ -70,6 +70,10 @@ jobs: uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + tags: | + type=semver,pattern={{version}} + flavor: + latest=true # Build and push Docker image with Buildx (don't push on PR) # https://github.com/docker/build-push-action