Skip to content

Method references supported in transform and fromExpression (#133) #24

Method references supported in transform and fromExpression (#133)

Method references supported in transform and fromExpression (#133) #24

Workflow file for this run

name: Build and Deploy Website
on:
push:
branches:
- main
paths:
- website/**
jobs:
deploy:
name: Build and Deploy Website
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Install Packages
run: npm ci
working-directory: ./website
- name: Build Website
run: npm run prod
working-directory: ./website
- name: Archive artifact
shell: sh
run: |
echo ::group::Archive artifact
tar \
--dereference --hard-dereference \
--directory "website/dist" \
-cvf "$RUNNER_TEMP/artifact.tar" \
.
echo ::endgroup::
- name: Upload artifact
id: upload-artifact
uses: actions/upload-artifact@v4
with:
name: github-pages
path: ${{ runner.temp }}/artifact.tar
retention-days: 1
if-no-files-found: error
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4