Skip to content

feat: hook up discord webhook for annoucing to discord #46

feat: hook up discord webhook for annoucing to discord

feat: hook up discord webhook for annoucing to discord #46

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
tags:
- "*"
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dprint/[email protected]
build:
runs-on: ubuntu-latest
needs: style
steps:
- uses: actions/checkout@v4
- name: Install & Build Website
uses: withastro/action@v2
with:
path: .
package-manager: bun@latest
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4