flashcard-archive/.github/workflows/publish.yml
2022-03-15 17:58:38 -07:00

43 lines
1.1 KiB
YAML

name: Deploy site
on:
push:
branches: [ main ]
paths:
- files/**
- .github/workflows/publish.yml
workflow_dispatch:
jobs:
doc-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
submodules: recursive
- name: Install apindex-v2
run: |
sudo apt-get update
sudo apt-get install curl git -y
curl https://raw.githubusercontent.com/jayanta525/apindex/master/install.sh | sudo bash
- name: Build site
run: |
cp README.md files/README.md
apindex files
mkdir public
cp -r files/* public
cp CNAME public
touch public/.nojekyll
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: public # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branchimage: ubuntu:bionic