Skip to content

Merge pull request #1 from kilbouri/main #13

Merge pull request #1 from kilbouri/main

Merge pull request #1 from kilbouri/main #13

Workflow file for this run

name: deploy-front-end
on:
push:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
publish:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out repo
uses: actions/checkout@v2
- name: Set up Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: "1.1.4"
- name: Build Resume
run: |
bun install
bun run build
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}