Skip to content

Commit

Permalink
chore: release to GitHub
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
  • Loading branch information
jkowalleck committed May 23, 2024
1 parent ddb4753 commit 5874f4d
Showing 1 changed file with 20 additions and 9 deletions.
29 changes: 20 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ jobs:
- name: git push back
run: git push --follow-tags

publish-NPMJS:
publish-package:
needs:
- "bump"
name: publish NPMJS
name: publish package
runs-on: ubuntu-latest
timeout-minutes: 30
env:
NPMJS_RELEASE_TAG: ${{ github.event.inputs.prerelease == 'true' && 'unstable-prerelease' || 'latest' }}
PACKAGE_RELEASE_TAG: ${{ github.event.inputs.prerelease == 'true' && 'unstable-prerelease' || 'latest' }}
steps:
- name: Checkout code
# see https://github.com/actions/checkout
Expand All @@ -100,16 +100,27 @@ jobs:
- name: install build tools
run: npm i --ignore-scripts --include=optional --loglevel=silly
# no explicit npm build. if a build is required, it should be configured as prepublish/prepublishOnly script of npm.
- name: login to NPMJS
run: npm config set "//registry.npmjs.org/:_authToken=$NPMJS_AUTH_TOKEN"
- name: login to registries
run: |
npm config set "//registry.npmjs.org/:_authToken=$NPMJS_AUTH_TOKEN"
npm config set "//npm.pkg.github.com/:_authToken==$GH_AUTH_TOKEN"
env:
GH_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPMJS_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: publish to NPMJS as "${{ env.NPMJS_RELEASE_TAG }}"
- name: publish to NPMJS as "${{ env.PACKAGE_RELEASE_TAG }}"
run: >
npm publish
npm publish
--@cyclonedx:registry='https://registry.npmjs.org'
--provenance
--access public
--tag "$NPMJS_RELEASE_TAG"
--tag "$PACKAGE_RELEASE_TAG"
- name: publish to GitHub as "${{ env.PACKAGE_RELEASE_TAG }}"
run: >
npm publish
--@cyclonedx:registry='https://npm.pkg.github.com'
--provenance
--access public
--tag "$PACKAGE_RELEASE_TAG"
- name: pack release result
run: |
mkdir -p "$PACKED_DIR"
Expand All @@ -125,7 +136,7 @@ jobs:
release-GH:
needs:
- "bump"
- "publish-NPMJS"
- "publish-package"
name: publish GitHub
runs-on: ubuntu-latest
timeout-minutes: 30
Expand Down

0 comments on commit 5874f4d

Please sign in to comment.