Discontinue WackyWebM (#200) #22
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: Write last commit hash to file | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'master' | |
paths: | |
- '**' | |
- '!hash' | |
jobs: | |
job1: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- run: | | |
git rev-parse HEAD > hash | |
echo ${{ github.repository_owner }} >> hash | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add hash | |
git commit -m "automatically wrote commit hash to file" | |
git push |