Skip to content

it's working bro.. 🥦 #25

it's working bro.. 🥦

it's working bro.. 🥦 #25

Workflow file for this run

name: githooo
on:
push:
branches: [ main ]
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Build
run: bun run build
env:
PUBLIC_API_URL: ${{ secrets.PUBLIC_API_URL }}
- name: Upload Artifacts
uses: actions/upload-pages-artifact@v1
with:
path: './build'
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy
id: deployment
uses: actions/deploy-pages@v1