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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |