Skip to content

Add workaround for alpha information getting lost on low opacity in … #57

Add workaround for alpha information getting lost on low opacity in …

Add workaround for alpha information getting lost on low opacity in … #57

Workflow file for this run

name: Publish blockbench-types@next to npmjs
on:
push:
branches:
- next
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v5
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4
with:
node-version: '24.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run generate-types
- run: (cd ./types; version=$(npm view blockbench-types@next version); echo $(echo $version | sed 's/[0-9]*$//')$(echo $version | cut -d '-' -f3 | expr $(sed 's/[^0-9]//g') + 1))
- run: npm run publish-types --tag next