Remove references to Atom editor (#167) #229
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] | |
concurrency: | |
group: singleton | |
cancel-in-progress: true | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
container: coronalabs/docs | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: Checkout Submodules | |
run: | | |
git submodule sync --recursive | |
git submodule update --init --force --recursive --depth=1 --remote --merge | |
- name: Build the docs | |
working-directory: ./bin | |
run: lua build.lua | |
- name: Deploy Github Pages | |
uses: JamesIves/github-pages-deploy-action@releases/v3 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: gh-pages | |
FOLDER: html |