Skip to content

chore: update the files #3

chore: update the files

chore: update the files #3

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