Skip to content

(chore): release PWA 0.0.87 #87

(chore): release PWA 0.0.87

(chore): release PWA 0.0.87 #87

Workflow file for this run

name: PWA Release
on:
push:
tags:
- "pwa@*"
jobs:
ci:
uses: ./.github/workflows/ci.yml
permissions:
contents: read
actions: read
security-events: write
release:
needs: ci
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Push to branch `release`
run: |
git branch release -f
git push origin release -f
- name: Conventional Changelog Action
uses: TriPSs/conventional-changelog-action@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
skip-git-pull: "true"
tag-prefix: "pwa@"
output-file: "false"
git-branch: "main"
skip-tag: "true"
- name: Create Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: ${{ steps.changelog.outputs.clean_changelog }}
draft: false
prerelease: false