remove sign in feature. #53
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: Prod Deployment | |
on: | |
push: | |
branches: [ stage ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Initiate - Stage | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.PAT }} | |
ref: stage | |
- name: Push changes - Init Prod | |
run: git push origin -f stage:prod | |