build(deps): bump helm/chart-releaser-action from 1.5.0 to 1.6.0 #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and publish container images | |
on: | |
push: | |
branches: [ master, '[0-9]+.[0-9]+' ] | |
# Publish semver tags as releases. | |
tags: [ 'v[0-9]+.[0-9]+*', 'v[0-9]+.[0-9]+.[0-9]+*' ] | |
pull_request: | |
branches: [ master, '[0-9]+.[0-9]+' ] | |
# Allows to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
# PeekabooAV image is built by the PeekabooAV repository CI/CD | |
publish: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
image: [rspamd, postfix, cortex-setup] | |
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: | |
# required for access to the local publish action | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
- uses: ./.github/actions/container-image-publish | |
with: | |
ref: ${{ github.ref }} | |
base-ref: ${{ github.base_ref }} | |
image_name: scvenus/peekabooav-${{ matrix.image }} | |
builddir: ${{ matrix.image }} | |
registry_password: ${{ secrets.GITHUB_TOKEN }} |