chore(ui): migrate NativeSelect, NativeSelectOption and NativeSelectO… #235
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: | |
- main | |
env: | |
HUSKY: 0 | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
release: | |
name: Release | |
runs-on: [default] | |
outputs: | |
published: ${{ steps.changesets.outputs.published }} | |
publishedPackages: ${{ steps.changesets.outputs.publishedPackages }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Setup Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Install Dependencies | |
run: npm ci | |
- name: Create Release Pull Request or Publish to npm | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
# This expects you to have a script called release which does a build for your packages and calls changeset publish | |
publish: npm run release | |
title: "publish(npm): automate Package Versioning and Publishing with Changesets" | |
commit: "chore(version): update versions with Changesets" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
notify-on-success: | |
if: needs.release.outputs.published == 'true' | |
needs: [release] # List the jobs that should complete successfully | |
uses: cloudoperators/juno/.github/workflows/shared-slack-notification.yaml@main | |
with: | |
title: "JUNO Packages Released Successfully! 🚀" | |
body: ${{ needs.release.outputs.publishedPackages }} | |
rich_body: true | |
secrets: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
notify-on-failure: | |
if: failure() | |
needs: [release] | |
uses: cloudoperators/juno/.github/workflows/shared-slack-notification.yaml@main | |
with: | |
title: "🚨 JUNO Packages Release Failed 🚨" | |
body: "An error occurred while releasing JUNO Packages for the branch ${{ github.head_ref || github.ref_name }}. Please check the logs for more information. <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|Check the logs>" | |
secrets: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |