Merge pull request #534 from eddie-knight/releaser #1
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: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
create_github_release: | |
outputs: | |
full-tag: ${{ steps.release-drafter.outputs.tag_name }} | |
short-tag: ${{ steps.get_tag_name.outputs.SHORT_TAG }} | |
body: ${{ steps.release-drafter.outputs.body }} | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: read | |
steps: | |
- uses: release-drafter/release-drafter@v6 | |
id: release-drafter | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
publish: true | |
- name: Get the short tag | |
id: get_tag_name | |
run: | | |
short_tag=$(echo ${{ steps.release-drafter.outputs.tag_name }} | cut -d. -f1) | |
echo "SHORT_TAG=$short_tag" >> $GITHUB_OUTPUT | |
create_npm_release: | |
if: github.event.pull_request.head.repo.full_name == github.repository # Everything but this step can be tested on a fork | |
needs: create_github_release | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
steps: | |
- uses: actions/checkout@8459bc0 # v4 | |
- uses: actions/setup-node@c2ac33f # v4, Setup .npmrc file to publish to npm | |
with: | |
node-version: '18.x' | |
registry-url: 'https://registry.npmjs.org' | |
- run: npm ci | |
- run: npm publish --access=public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |