Skip to content

Merge branch 'main' of https://github.com/pium-official/pium-official… #42

Merge branch 'main' of https://github.com/pium-official/pium-official…

Merge branch 'main' of https://github.com/pium-official/pium-official… #42

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 20.3.1
- name: Install node packages
run: yarn
- name: Build
run: yarn build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: public
- name: action-slack
uses: 8398a7/[email protected]
with:
status: ${{ job.status }}
author_name: 기술블로그 빌드 결과
fields: repo,message,commit,author,action,eventName,ref,workflow,job,took
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required
if: always() # Pick up events even if the job fails or is canceled.