Symlink en messages.json for easy access #61
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: Deploy to GitHub Pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
name: Github-Pages-Deploy | |
runs-on: ubuntu-latest | |
steps: | |
# Any prerequisite steps | |
- uses: actions/checkout@master | |
# Deploy to local repo | |
- name: Deploy | |
uses: s0/git-publish-subdir-action@develop | |
env: | |
REPO: self | |
BRANCH: gh-pages | |
FOLDER: website | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |