flashcard-archive/.github/workflows/publish.yml
lifehackerhansol 60b79c8c0b
workflow: allow pushes from anywhere
Pretty much everything in this repo is needed somewhere in this workflow
2022-09-29 00:35:51 -07:00

41 lines
1.1 KiB
YAML

name: Deploy site
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
doc-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
submodules: recursive
fetch-depth: 0
- 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