Add workaround for alpha information getting lost on low opacity in … #57
This file contains hidden or 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: 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 |