LS_COLORS/.github/workflows/build.yaml

28 lines
626 B
YAML
Raw Normal View History

---
name: 'Release'
on:
2023-11-24 17:51:16 +01:00
workflow_run:
workflows: ["pre-commit"]
types:
- completed
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: 'Check out Git repository'
uses: actions/checkout@v3
- name: 'Generate shell files'
run: make generate
- name: 'Commit generated files'
if: ${{ success() }}
run: |
git config user.name 'github-actions'
git config user.email 'github-actions@github.com'
git add lscolors.sh lscolors.csh
git commit -m "Update shell files" || echo "No changes to commit"
git push