Skip to content

static: Output to static/ & exclude files #4

static: Output to static/ & exclude files

static: Output to static/ & exclude files #4

Workflow file for this run

name: Deploy url redirect
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
# Generate our out directory by running node index.js
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: v20.8.0
- run: |
npm install
node index.js
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# Upload only 'out' directory
publish_dir: './out'
destination_dir: static
exclude_assets: '.github,.vscode,**.json,**.yml,**.js,README.md,LICENSE'