chore: remove Nix (#376) #14
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: Generate files | |
on: | |
push: | |
branches: ["main"] | |
paths-ignore: | |
- "config/version.txt" | |
- "README.md" | |
jobs: | |
generate: | |
permissions: | |
contents: write | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "^1.20.6" | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
fetch-depth: 0 | |
- name: Run generate | |
if: matrix.os == 'ubuntu-latest' | |
run: make generate | |
- name: Verify Changed files | |
uses: tj-actions/verify-changed-files@v17 | |
if: matrix.os == 'ubuntu-latest' | |
id: verify-changed-files-generate | |
with: | |
files: | | |
docs/options.md | |
- name: Commit changes | |
if: steps.verify-changed-files-generate.outputs.files_changed == 'true' | |
run: | | |
git config --local user.email "opensource@mail.schwarz" | |
git config --local user.name "SchwarzIT Bot" | |
git add toml docs/options.md | |
git commit -m "chore: regenerate files" | |
- name: Push changes | |
if: steps.verify-changed-files-coverage.outputs.files_changed == 'true' || steps.verify-changed-files-generate.outputs.files_changed == 'true' | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.SIT_BOT_PAT }} | |
branch: ${{ github.head_ref }} |