fix naming #351
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |