Skip to content

Commit b63c971

Browse files
Merge pull request #709 from supertokens/versioninig
feat: Add github workflow for versioning
2 parents d93be98 + 7466b55 commit b63c971

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/versioning.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Docs versioning
2+
on:
3+
push: # Trigger the workflow on push events but only for the main branch
4+
branches: [ master ]
5+
jobs:
6+
Tag-And-Release-Docs:
7+
runs-on: ubuntu-latest
8+
environment: Actions
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: supertokens/supertokens-github-actions/docs/versioning@master
12+
with:
13+
GITHUB_TOKEN: ${{ secrets.VCS_TOKEN }}

0 commit comments

Comments
 (0)