[Dispatch] Mirinae Release #350
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "[Dispatch] Mirinae Release" | |
on: | |
workflow_dispatch: | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.PAT_TOKEN }} | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Restore cached node_modules | |
id: restore-node-cache | |
uses: actions/cache@v3 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.OS }}-node-modules-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.OS }}-node-modules- | |
- name: Install dependencies | |
if: steps.restore-node-cache.outputs.cache-hit != 'true' | |
run: npm ci | |
- name: Build | |
env: | |
NODE_ENV: "production" | |
run: | | |
npm run build -- --filter=@cloudforet/mirinae --output-logs=new-only | |
# - name: Release | |
# env: | |
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
# GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} | |
# run: | | |
notification: | |
needs: release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Slack | |
if: always() | |
uses: 8398a7/action-slack@v3.15.0 | |
with: | |
status: ${{job.status}} | |
fields: repo,message,commit,author,action,ref,workflow,job | |
author_name: Github Action Slack |