fix(docker): Drop Mac arm64 build-time hack, needed for checkov
<3.2…
#132
This file contains hidden or 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: Release | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
paths: | |
- '**/*.py' | |
- '**/*.sh' | |
- Dockerfile | |
- .pre-commit-hooks.yaml | |
# Ignore paths | |
- '!tests/**' | |
permissions: | |
contents: read | |
jobs: | |
release: | |
permissions: | |
# for cycjimmy/semantic-release-action to create a release | |
contents: write | |
# for cycjimmy/semantic-release-action to write comments to issues | |
issues: write | |
# for cycjimmy/semantic-release-action to write comments to PRs | |
pull-requests: write | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- name: Release | |
uses: cycjimmy/semantic-release-action@0a51e81a6baff2acad3ee88f4121c589c73d0f0e # v4.2.0 | |
with: | |
semantic_version: 18.0.0 | |
extra_plugins: | | |
@semantic-release/[email protected] | |
@semantic-release/[email protected] | |
env: | |
# Custom token for triggering Docker image build GH Workflow on release | |
# created by cycjimmy/semantic-release-action. Events created by | |
# workflows with default GITHUB_TOKEN not trigger other GH Workflow. | |
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_TOKEN }} |