Skip to content

Update index.md

Update index.md #19

Workflow file for this run

name: Build and Deploy to Github Pages
on: push
jobs:
build_and_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Use GitHub Actions' cache to cache dependencies on servers
- uses: actions/cache@v3
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
# Use GitHub Deploy Action to build and deploy to Github
- uses: jeffreytse/[email protected]
with:
provider: 'github'
branch: "github-pages"
token: ${{ secrets.GITHUB_TOKEN }} # It's your Personal Access Token(PAT)
GITHUB_ACTOR: ${{ secrets.GITHUB_ACTOR }}
cname: 'approvaltests.com'