Skip to content

Rename circle_purple.webp to settlement_euro.webp #541

Rename circle_purple.webp to settlement_euro.webp

Rename circle_purple.webp to settlement_euro.webp #541

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Build Eleventy
on:
push:
branches:
- main
- release
- develop
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [17.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies & build
run: |
npm run rebuild
- name: Deploy to github pages
if: ${{ true }}
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./frontend/_site
github_token: ${{ secrets.GITHUB_TOKEN }}