Skip to content

Create 1. 기획 스터디 처음 #57

Create 1. 기획 스터디 처음

Create 1. 기획 스터디 처음 #57

Workflow file for this run

# name: Deploy
# on:
# push:
# branches: [main]
# concurrency:
# group: ${{ github.workflow }}-${{ github.ref }}
# cancel-in-progress: true
# jobs:
# deploy:
# runs-on: ubuntu-latest
# permissions:
# pages: write
# id-token: write
# steps:
# - uses: actions/checkout@v4
# - name: Setup Hugo
# uses: peaceiris/actions-hugo@v3
# with:
# hugo-version: 'latest'
# extended: true
# - name: Build
# run: hugo --minify
# - name: Upload Pages Artifact
# uses: actions/upload-pages-artifact@v3
# with:
# path: public
# - name: Deploy to GitHub Pages
# uses: actions/deploy-pages@v4