Skip to content

publish(npm): automate Package Versioning and Publishing with Changes… #103

publish(npm): automate Package Versioning and Publishing with Changes…

publish(npm): automate Package Versioning and Publishing with Changes… #103

Workflow file for this run

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]
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- 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 }}
- name: Send a Slack notification if a publish happens
if: steps.changesets.outputs.published == 'true'
id: slack_notification
uses: slackapi/[email protected]
with:
payload: |
{
"blocks": [
{
"type": "context",
"elements": [
{
"type": "image",
"image_url": "https://avatars.githubusercontent.com/u/160245993?s=48&v=4",
"alt_text": "cloudoperators/juno"
},
{
"type": "mrkdwn",
"text": "JUNO Packages Released Successfully! 🚀"
}
]
},
{
"type": "rich_text",
"elements": [
{
"type": "rich_text_preformatted",
"elements": [
{
"type": "text",
"text": ${{ toJson(steps.changesets.outputs.publishedPackages) }}
}
],
"border": 0
}
]
}
]
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK