chore: update the files #6
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: update-continuous-tag | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Update continuous tag | |
env: | |
GH_TOKEN: ${{ secrets.SAK_ACTIONS_SECRETS }} | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Qsaker" | |
git tag -fa continuous -m "chore: update to latest commit" | |
git push origin :refs/tags/continuous | |
git push origin continuous | |
git commit --allow-empty -m "Trigger GitHub Actions" |