pre-commit-opentofu/.github/workflows/release.yml
renovate[bot] 213808f44d
chore(deps): update cycjimmy/semantic-release-action action to v3 (#480)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-30 20:39:09 +02:00

34 lines
830 B
YAML

name: Release
on:
workflow_dispatch:
push:
branches:
- master
paths:
- '**/*.py'
- '**/*.sh'
- 'Dockerfile'
- '.pre-commit-hooks.yaml'
# Ignore paths
- '!tests/**'
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@dc323e67f16fb5f7663d20ff7941f27f5809e9b6 # v2.6.0
with:
persist-credentials: false
fetch-depth: 0
- name: Release
uses: cycjimmy/semantic-release-action@8f6ceb9d5aae5578b1dcda6af00008235204e7fa # v3.2.0
with:
semantic_version: 18.0.0
extra_plugins: |
@semantic-release/changelog@6.0.0
@semantic-release/git@10.0.0
env:
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}