Skip to content

feat: 메인 화면 디자인 수정 (#31) #22

feat: 메인 화면 디자인 수정 (#31)

feat: 메인 화면 디자인 수정 (#31) #22

Workflow file for this run

name: Deploy static content to Pages
on:
# 원하는 브랜치 명으로 바꿔주시면 됩니다.
push:
branches: ['develop']
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: 'pages'
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Build
env:
VITE_ADSENSE_CLIENT_ID: ${{ secrets.ADSENSE_CLIENT_ID }}
VITE_ADSENSE_SLOT_ID: ${{ secrets.ADSENSE_SLOT_ID }}
run: npm run build
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: './dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1