Bump version to v6.0.0-beta.8
(#1641)
#70
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: Semantic Release | |
on: | |
push: | |
branches: | |
- main | |
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@v4 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
- uses: volta-cli/action@v4 | |
- 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 }} | |
new-release-git-tag: ${{ steps.get-next-version.outputs.new-release-git-tag }} | |
release: | |
runs-on: ubuntu-latest | |
needs: get-next-version | |
if: needs.get-next-version.outputs.new-release-published == 'true' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
- uses: volta-cli/action@v4 | |
- run: yarn install --immutable | |
- run: yarn run build | |
env: | |
RELEASE_VERSION: ${{ needs.get-next-version.outputs.new-release-version }} | |
RELEASE_TAG: ${{ needs.get-next-version.outputs.new-release-git-tag }} | |
- uses: thedoctor0/[email protected] | |
with: | |
type: zip | |
path: dist | |
filename: frigate-hass-card.zip | |
- run: npx semantic-release --dry-run | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |