-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update changelog We were missing the `2.0.12` notes. * add `release-channel` and `release-notes` scripts * bump actions, hoist env, use $GITHUB_ENV * add prepare-release and release workflows
- Loading branch information
1 parent
fe073d2
commit fe04b0c
Showing
7 changed files
with
180 additions
and
20 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Prepare Release | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
env: | ||
CI: true | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
permissions: | ||
contents: write # for softprops/action-gh-release to create GitHub release | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [18] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- run: git fetch --tags -f | ||
|
||
- name: Resolve version | ||
id: vars | ||
run: | | ||
echo "TAG_NAME=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV | ||
- name: Get release notes | ||
run: | | ||
RELEASE_NOTES=$(npm run release-notes --silent) | ||
echo "RELEASE_NOTES<<EOF" >> $GITHUB_ENV | ||
echo "$RELEASE_NOTES" >> $GITHUB_ENV | ||
echo "EOF" >> $GITHUB_ENV | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
registry-url: 'https://registry.npmjs.org' | ||
|
||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
draft: true | ||
tag_name: ${{ env.TAG_NAME }} | ||
body: | | ||
${{ env.RELEASE_NOTES }} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: Release | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
permissions: | ||
contents: read | ||
|
||
env: | ||
CI: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [18] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
registry-url: 'https://registry.npmjs.org' | ||
|
||
- name: Use cached node_modules | ||
id: cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: node_modules | ||
key: nodeModules-${{ hashFiles('**/package-lock.json') }}-${{ matrix.node-version }} | ||
restore-keys: | | ||
nodeModules- | ||
- name: Install dependencies | ||
if: steps.cache.outputs.cache-hit != 'true' | ||
run: npm install | ||
|
||
- name: Calculate environment variables | ||
run: | | ||
echo "RELEASE_CHANNEL=$(npm run release-channel --silent)" >> $GITHUB_ENV | ||
- name: Publish `heroicons` | ||
run: npm publish --tag ${{ env.RELEASE_CHANNEL }} | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
||
- name: Publish `@heroicons/react` | ||
run: npm publish ./react --tag ${{ env.RELEASE_CHANNEL }} | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
||
- name: Publish `@heroicons/vue` | ||
run: npm publish ./vue --tag ${{ env.RELEASE_CHANNEL }} | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Given a version, figure out what the release channel is so that we can publish to the correct | ||
// channel on npm. | ||
// | ||
// E.g.: | ||
// | ||
// 1.2.3 -> latest (default) | ||
// 0.0.0-insiders.ffaa88 -> insiders | ||
// 4.1.0-alpha.4 -> alpha | ||
|
||
let version = | ||
process.argv[2] || process.env.npm_package_version || require('../package.json').version | ||
|
||
let match = /\d+\.\d+\.\d+-(.*)\.\d+/g.exec(version) | ||
if (match) { | ||
console.log(match[1]) | ||
} else { | ||
console.log('latest') | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Given a version, figure out what the release notes are so that we can use this to pre-fill the | ||
// relase notes on a GitHub release for the current version. | ||
|
||
let path = require('path') | ||
let fs = require('fs') | ||
|
||
let version = | ||
process.argv[2] || process.env.npm_package_version || require('../package.json').version | ||
|
||
let changelog = fs.readFileSync(path.resolve(__dirname, '..', 'CHANGELOG.md'), 'utf8') | ||
let match = new RegExp( | ||
`## \\[${version}\\] - (.*)\\n\\n([\\s\\S]*?)\\n(?:(?:##\\s)|(?:\\[))`, | ||
'g' | ||
).exec(changelog) | ||
|
||
if (match) { | ||
let [, , notes] = match | ||
console.log(notes.trim()) | ||
} else { | ||
console.log(`Placeholder release notes for version: v${version}`) | ||
} |