Skip to content

Add files via upload (#6) #31

Add files via upload (#6)

Add files via upload (#6) #31

Workflow file for this run

name: Publish Gallery
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Publish Gallery to Github Pages
if: github.repository != 'gautamkrishnar/github-pages-gallery'
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
with:
persist-credentials: false
- name: Build Gallery 🔧
run: docker run -v "$(pwd):/work" thumbsupgallery/thumbsup /bin/sh -c "cd /work/ && thumbsup --config config.json"
- name: Deploy to Github Pages 🚀
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: build_output
CLEAN: true