Skip to content

Merge branch 'dev' of https:/rinoreji/icon-collection int… #44

Merge branch 'dev' of https:/rinoreji/icon-collection int…

Merge branch 'dev' of https:/rinoreji/icon-collection int… #44

Workflow file for this run

on:
workflow_dispatch:
push:
branches:
- dev
jobs:
pre_build:
name: Prepare index pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: 'dev'
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: './_tools/package-lock.json'
- name: Change working directory to _tools
run: cd _tools
- name: Install dependencies
run: npm install
working-directory: './_tools'
- name: Run Gallery
run: ./run-gallery.sh
working-directory: './_tools'
- name: git setup
run: |
git config user.email "[email protected]"
git config user.name "Github Actions"
- name: git commit and push
run: ./run-commit.sh
working-directory: './_tools'