Skip to content

bump fast-uri from 3.1.0 to 3.1.2 (#77) #20

bump fast-uri from 3.1.0 to 3.1.2 (#77)

bump fast-uri from 3.1.0 to 3.1.2 (#77) #20

Workflow file for this run

name: Release Workflow
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build-and-deploy:
name: Build and Deploy Docs
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Set Up Node
uses: actions/[email protected]
with:
node-version: 20
cache: npm
- name: Install Dependencies
run: npm ci
- name: Build Docs
run: npm run build
- name: Deploy Docs to GitHub Pages
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
cname: docs.hauler.dev
user_name: github-actions[bot]
user_email: github-actions[bot]@users.noreply.github.com