Skip to content

Create BeatsSolo4,1-minecraft.png #324

Create BeatsSolo4,1-minecraft.png

Create BeatsSolo4,1-minecraft.png #324

Workflow file for this run

name: Generate images
on:
push:
branches: main
paths:
- 'device/**'
- 'device-lowres/**'
- 'images/**'
- 'index.js'
- 'createJsonOutput.js'
- '.github/workflows/**'
jobs:
docs:
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: '16'
- name: Install Yarn
run: npm install --global yarn
- name: Install dependencies
run: yarn
- name: Generate JSON output
run: node createJsonOutput.js
- name: Generate images
run: node index.js
- name: Create CNAME
run: echo 'img.appledb.dev' >> out/CNAME
- name: No jekyll
run: echo '' >> out/.nojekyll
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: out
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}