Skip to content

feat: change the way images are listed (#91) #97

feat: change the way images are listed (#91)

feat: change the way images are listed (#91) #97

Workflow file for this run

name: Deploy Pixelium demo
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: |
npm ci
npm i -g gh-pages
- name: Build Pixelium
run: npm run build
- name: Deploy Pixelium
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --global user.email "[email protected]"
git config --global user.name "Xavier Stouder"
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
npm run deploy