Skip to content

drikusroor triggered the CI workflow 🚀 #19

drikusroor triggered the CI workflow 🚀

drikusroor triggered the CI workflow 🚀 #19

Workflow file for this run

name: CI
run-name: ${{ github.actor }} triggered the CI workflow 🚀
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
env:
BASE_PATH: ${{ vars.BASE_PATH }}
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
- run: bun install
- run: bun run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./build
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy artifact to GitHub Pages
uses: actions/deploy-pages@v2
id: deployment