Add ns k8 blog (#58) #18
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
# This workflow will run tests using node and then publish to github pages | |
name: gh-pages publisher 🚀 | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
publish-gh-pages: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 12 | |
- run: npm ci | |
- run: git config user.name "Trishul Goel" && git config user.email "[email protected]" | |
- run: npm run deploy | |
env: | |
GH_TOKEN: ${{secrets.SECRET_GITHUB_TOKEN}} |