Skip to content

fix(outline): external label resize #32

fix(outline): external label resize

fix(outline): external label resize #32

Workflow file for this run

on:
push:
branches:
- master
- develop
name: release
jobs:
release-please:
outputs:
release_created: ${{ steps.release.outputs.release_created }}
tag: ${{ steps.release.outputs.tag_name }}
permissions:
contents: write # to create release commit (google-github-actions/release-please-action)
pull-requests: write # to create release PR (google-github-actions/release-please-action)
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
default-branch: master
pull-request-title-pattern: 'chore: release v${version}'
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"deps","section":"Dependency Updates","hidden":false}]'
changelog-notes-type: github
publish:
needs: release-please
if: ${{ needs.release-please.outputs.release_created }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
post-release:
needs:
- release-please
- publish
if: ${{ needs.release-please.outputs.release_created }}
secrets: inherit
uses: ./.github/workflows/POST_RELEASE.yml
with:
tag: ${{ needs.release-please.outputs.tag }}