Skip to content

Merge pull request #207 from fox-forks/hyperupcall-fix-makefile #16

Merge pull request #207 from fox-forks/hyperupcall-fix-makefile

Merge pull request #207 from fox-forks/hyperupcall-fix-makefile #16

Workflow file for this run

---
name: 'Release'
on:
push:
branches: [master]
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 '[email protected]'
git add lscolors.sh lscolors.csh
git commit -m "Update shell files" || echo "No changes to commit"
git push