blob: 5dba6da469710683944ea25effd8e7fa01f4d372 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
name: "Update gallery.sh demo page"
on:
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Dependencies 🔧
run: sudo apt-get install imagemagick jhead
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Build 🖼️
run: |
ls -lah
mkdir -p build/
cp images/demo/* build/
cd build/
ls -lah
bash ../gallery.sh -t "Demo Gallery" -d "thumbs"
# https://github.com/marketplace/actions/deploy-to-github-pages
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: build # The folder the action should deploy.
|