Skip to content

Commit

Permalink
Add deploy workflow (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenixpereira authored Sep 20, 2024
1 parent e3d4caa commit 7a1a231
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: Deploy

on:
push:
branches: ["main"]

workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
environment: github-pages
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install pnpm
run: npm install -g pnpm

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: pnpm

- name: Restore cache
uses: actions/cache@v4
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-vite-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: ${{ runner.os }}-vite-

- name: Install dependencies
run: pnpm install

- name: Build with Vite
env:
VITE_SPOTIFY_CLIENT_ID: ${{ secrets.VITE_SPOTIFY_CLIENT_ID }}
VITE_REDIRECT_URI: ${{ secrets.VITE_REDIRECT_URI }}
run: pnpm run build

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./dist

deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 7a1a231

Please sign in to comment.