refactor(checkpatch): Add back deprecated option #26
Workflow file for this run
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: release | |
on: | |
push: | |
tags: ["v[0-9]+.[0-9]+.[0-9]+"] | |
permissions: | |
contents: write | |
packages: write | |
jobs: | |
goreleaser: | |
runs-on: ubuntu-latest | |
container: kraftkit.sh/myself-full:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Fetch all tags | |
run: | | |
git config --global --add safe.directory /__w/governance/governance | |
git fetch --force --tags | |
- name: Run GoReleaser | |
run: | | |
goreleaser release \ | |
--config .goreleaser.yml \ | |
--clean \ | |
--rm-dist \ | |
--skip-validate | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_PAT }} |