removed rudementary eula acceptance #52
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: 'Push latest tag' | |
on: [push, pull_request] | |
jobs: | |
push_tag: | |
name: 'Push latest tag' | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Move the tag to the latest commit on main | |
run: | | |
git tag --force latest | |
git push --force --tags |