Skip to content

chore: update the file #2

chore: update the file

chore: update the file #2

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
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
env:
GH_TOKEN: ${{ secrets.SAK_ACTIONS_SECRETS }}