Skip to content

Commit

Permalink
Prepare and push a commit after each scheduled and unscheduled release
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmcarthur committed Dec 5, 2023
1 parent 4d1e279 commit 9b59d11
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/signbank-extract.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,14 @@ jobs:
asset_path: ./nzsl.dat
asset_name: nzsl.dat
asset_content_type: text/plain
- name: Create LATEST_RELEASE_DATE file
run: echo "${{steps.date.outputs.date}}" > LATEST_RELEASE_DATE
- name: Configure git
run: |
git config --global user.name 'GitHub Actions'
git config --global user.email '[email protected]'
- name: Commit and push LATEST_RELEASE_DATE file
run: |
git add LATEST_RELEASE_DATE
git commit -m "Release ${{steps.date.outputs.date}}"
git push

0 comments on commit 9b59d11

Please sign in to comment.