This is a high risk change: every byte the card ships is emitted by a
different bundler, minified by a different minifier, and every
stylesheet is compiled by a different sass. The intent is that the
card's behaviour is unchanged.
**Significant development win**: Build time drops from 24s to 1.1s 🎉
Also adds a test suite ('dist') that runs against the built bundle.
56 lines
1.5 KiB
YAML
56 lines
1.5 KiB
YAML
---
|
|
name: Semantic Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- next
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write # To be able to publish a GitHub release
|
|
issues: write # To be able to comment on released issues
|
|
pull-requests: write # To be able to comment on released pull requests
|
|
|
|
jobs:
|
|
get-next-version:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
with:
|
|
fetch-depth: 0
|
|
persist-credentials: false
|
|
- uses: volta-cli/action@v5
|
|
- run: yarn install --immutable
|
|
- run: npx semantic-release --dry-run
|
|
id: get-next-version
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
outputs:
|
|
new-release-published: ${{ steps.get-next-version.outputs.new-release-published }}
|
|
new-release-version: ${{ steps.get-next-version.outputs.new-release-version }}
|
|
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
needs: get-next-version
|
|
if: needs.get-next-version.outputs.new-release-published == 'true'
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
with:
|
|
fetch-depth: 0
|
|
persist-credentials: false
|
|
- uses: volta-cli/action@v5
|
|
- run: yarn install --immutable
|
|
- run: yarn run build
|
|
env:
|
|
RELEASE_VERSION: ${{ needs.get-next-version.outputs.new-release-version }}
|
|
- uses: thedoctor0/zip-release@0.7.6
|
|
with:
|
|
type: zip
|
|
path: dist
|
|
filename: advanced-camera-card.zip
|
|
- run: npx semantic-release
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|