-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace release workflow and add node token as input
Signed-off-by: BOUHOURS Antoine <[email protected]>
- Loading branch information
1 parent
c51f089
commit 48a6cbb
Showing
3 changed files
with
61 additions
and
27 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,56 @@ | ||
name: Release | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
versionType: | ||
description: version type increment (major | minor | patch) | ||
required: true | ||
nodeAuthToken: | ||
required: true | ||
type: string | ||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Mask Node Auth Token | ||
- run: | | ||
NODE_AUTH_TOKEN=$(jq -r '.inputs.nodeAuthToken' $GITHUB_EVENT_PATH) | ||
echo ::add-mask::$NODE_AUTH_TOKEN | ||
echo NODE_AUTH_TOKEN=$NODE_AUTH_TOKEN >> $GITHUB_ENV | ||
- uses: actions/create-github-app-token@v1 | ||
id: app-token | ||
name: Generate app token | ||
with: | ||
app-id: ${{ vars.GRIDSUITE_ACTIONS_APPID }} | ||
private-key: ${{ secrets.GRIDSUITE_ACTIONS_SECRET }} | ||
|
||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
token: ${{ steps.app-token.outputs.token }} | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: '18.x' | ||
registry-url: 'https://registry.npmjs.org' | ||
|
||
- name: Add release commit and publish | ||
run: | | ||
git config --global user.name "github-actions[bot]" | ||
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
npm version ${{ github.event.inputs.versionType }} | ||
git push origin main | ||
git push origin $(git tag --points-at HEAD) | ||
npm install | ||
npm publish | ||
env: | ||
NODE_AUTH_TOKEN: ${{ env.NODE_AUTH_TOKEN }} | ||
|
||
- name: Create GitHub release | ||
run: | | ||
gh release create $(git tag --points-at HEAD) --generate-notes | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_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