Update members.yml #244
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: Build and Deploy | |
on: | |
push: | |
# NOTE: | |
# For a **project** site (username.github.io/project/), push things | |
# to the **master** branch and make sure to set the line below to | |
# ` - master`; also, at the end of the file, change to `BRANCH: gh-pages` | |
# | |
# For a **personal** site (username.github.io/), push things to a **dev** | |
# branch and make sure to set the line below to `- dev` this is | |
# because for user pages GitHub pages **requires** the deployment to be | |
# on the master branch; also, at the end of the file, change to | |
# `BRANCH: master` | |
branches: | |
- source | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/[email protected] # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly. | |
with: | |
persist-credentials: false | |
# Use GitHub Actions' cache to shorten build times and decrease load on servers | |
- uses: actions/cache@v1 | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- name: Run Jekyll | |
uses: lemonarc/[email protected] | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: master # The branch the action should deploy to. | |
FOLDER: _site # The folder the action should deploy. | |
CLEAN: true # Automatically remove deleted files from the deploy branch |