Skip to content

Commit

Permalink
Merge branch 'main' into feature/pixi-v8
Browse files Browse the repository at this point in the history
  • Loading branch information
Kristof Van Der Haeghen committed Feb 19, 2024
2 parents 52c1685 + a01a943 commit 478150d
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .github/workflows/github-action-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: Build & Deploy

on:
push:
branches:
- master
- main
- feature/pixi-v8
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Install packages
run: yarn install --immutable
- name: Build javascript
run: yarn build:prod
- name: Setup Pages
id: pages
uses: actions/configure-pages@v4
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./dist/prod
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3

# Deployment job
deploy:
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{steps.deployment.outputs.page_url}}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 478150d

Please sign in to comment.