Skip to content

Discontinue WackyWebM (#200) #22

Discontinue WackyWebM (#200)

Discontinue WackyWebM (#200) #22

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