Update Docker workflow to use main and develop branches for pushes and pull requests

This commit is contained in:
ASOwnerYT
2026-03-20 23:41:43 +13:00
parent 84aa8d8093
commit 3bc7f332de
+10 -10
View File
@@ -6,14 +6,16 @@ name: Docker
# documentation. # documentation.
on: on:
schedule:
- cron: '38 21 * * *'
push: push:
branches: [ "master" ] branches:
# Publish semver tags as releases. - main
tags: [ 'v*.*.*' ] - develop
tags:
- "v*.*.*"
pull_request: pull_request:
branches: [ "master" ] branches:
- main
- develop
env: env:
# Use docker.io for Docker Hub if empty # Use docker.io for Docker Hub if empty
@@ -21,10 +23,8 @@ env:
# github.repository as <account>/<repo> # github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }} IMAGE_NAME: ${{ github.repository }}
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions: permissions:
contents: read contents: read
@@ -43,7 +43,7 @@ jobs:
if: github.event_name != 'pull_request' if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 #v3.5.0 uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 #v3.5.0
with: with:
cosign-release: 'v2.2.4' cosign-release: "v2.2.4"
# Set up BuildKit Docker container builder to be able to build # Set up BuildKit Docker container builder to be able to build
# multi-platform images and export cache # multi-platform images and export cache
@@ -96,4 +96,4 @@ jobs:
DIGEST: ${{ steps.build-and-push.outputs.digest }} DIGEST: ${{ steps.build-and-push.outputs.digest }}
# This step uses the identity token to provision an ephemeral certificate # This step uses the identity token to provision an ephemeral certificate
# against the sigstore community Fulcio instance. # against the sigstore community Fulcio instance.
run: echo "${TAGS}" | xargs -I {} cosign sign --yes {}@${DIGEST} run: echo "${TAGS}" | xargs -I {} cosign sign --yes {}@${DIGEST}