Skip to content

fix: print docker debugging commands step not triggered on failure #9

fix: print docker debugging commands step not triggered on failure

fix: print docker debugging commands step not triggered on failure #9

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
actionlinter:
runs-on: ubuntu-latest
steps:
- uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #4.1.7
- name: Lint GitHub Actions
uses: docker://rhysd/actionlint:1.7.1
with:
options: -v $(pwd):/repo --workdir /repo
args: -color
release:
runs-on: ubuntu-latest
needs:
- actionlinter
steps:
- uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #4.1.7
with:
token: ${{ secrets.WEAREFRANK_BOT_PAT }}
- name: Setup Node
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b #4.0.3
with:
node-version: 20.x
- name: Install dependencies
run: yarn global add semantic-release @semantic-release/changelog @semantic-release/git @semantic-release/github @semantic-release/exec @semantic-release/release-notes-generator @semantic-release/commit-analyzer conventional-changelog-conventionalcommits
- name: Semantic Release
run: semantic-release
env:
GITHUB_TOKEN: ${{ secrets.WEAREFRANK_BOT_PAT }}
GH_TOKEN: ${{ secrets.WEAREFRANK_BOT_PAT }}