Skip to content
This repository was archived by the owner on Dec 19, 2024. It is now read-only.

Merge pull request #7 from TeaClientMC/dependabot/npm_and_yarn/nanoid… #19

Merge pull request #7 from TeaClientMC/dependabot/npm_and_yarn/nanoid…

Merge pull request #7 from TeaClientMC/dependabot/npm_and_yarn/nanoid… #19

Workflow file for this run

name: Deploy Assets Website
on:
push:
branches:
- stable
workflow_dispatch:
jobs:
build:
name: Building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install, build, and upload your site
uses: withastro/action@v2
with:
package-manager: bun@latest
deploy:
name: Deploying to GH Pages
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4