mirror of
https://github.com/DS-Homebrew/flashcard-archive.git
synced 2024-11-26 11:34:22 +01:00
519bd8c8b3
Alphabetical sorting bug is fixed upstream: https://github.com/jayanta525/github-pages-directory-listing/issues/2
40 lines
1.1 KiB
YAML
40 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
|
|
|
|
# to get README.md to webpage as well as GitHub's UI
|
|
- name: Pre-generation of directory listing
|
|
run: cp README.md files/README.md
|
|
|
|
- name: Github Pages Directory Listing
|
|
uses: jayanta525/github-pages-directory-listing@main
|
|
with:
|
|
FOLDER: files
|
|
|
|
# these shouldn't be in apindex, but need to be in repo root for GitHub Pages
|
|
- name: Pre-generation of directory listing
|
|
run: |
|
|
mkdir public
|
|
cp -r files/* public
|
|
cp CNAME public
|
|
touch public/.nojekyll
|
|
|
|
- name: Deploy 🚀
|
|
uses: JamesIves/github-pages-deploy-action@v4.4.1
|
|
with:
|
|
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
|