π Release #7
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: π Release | |
on: | |
# push: | |
# branches: | |
# - edge | |
# - master | |
workflow_dispatch: | |
inputs: | |
dry-run: | |
description: 'Dry Run' | |
required: false | |
default: 'yes' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20.x' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install dependencies | |
run: npm ci | |
- name: Build | |
run: npm run build-all | |
- name: Semantic Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: npx semantic-release ${{ github.event.inputs.dry-run == 'yes' && '--dry-run' || '' }} | |
# notify: | |
# runs-on: ubuntu-latest | |
# needs: ['release'] | |
# if: always() && needs.release.result == 'success' | |
# steps: | |
# - name: Slack Notification - Deployment Success | |
# uses: rtCamp/[email protected] | |
# env: | |
# SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
# SLACK_CHANNEL: 'widgets-releases' | |
# SLACK_COLOR: ${{ job.status }} | |
# SLACK_TITLE: 'Deployment succeeded' | |
# SLACK_MESSAGE: 'Success :rocket: @cld/gallery-widget version ${{ github.event.inputs.package_version }} deployed successfully to ${{ matrix.env }}' |