RM1.2.0 #71
This file contains hidden or 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 Auth Token and Deploy | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| env: | |
| AUTH_TOKEN: ${{ secrets.AUTH_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set AUTH_TOKEN as environment variable | |
| run: echo "AUTH_TOKEN=${{ secrets.AUTH_TOKEN }}" >> $GITHUB_ENV | |
| - name: Deploy to GitHub Pages | |
| run: | |
| echo "Deploying to GitHub Pages with AUTH_TOKEN..." |