Skip to content

feat: update store implementation to use StoreInstance and add flatte… #9

feat: update store implementation to use StoreInstance and add flatte…

feat: update store implementation to use StoreInstance and add flatte… #9

Workflow file for this run

name: Releases
on:
push:
branches:
- master
workflow_dispatch:
jobs:
changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Conventional Changelog Action
id: changelog
uses: TriPSs/conventional-changelog-action@v5
with:
github-token: ${{ secrets.PA_TOKEN }}
git-user-name: ${{ secrets.GIT_USER }}
git-user-email: ${{ secrets.GIT_USER_MAIL }}
version-file: './package.json'
pre-release: "true"
pre-release-identifier: "beta"
- name: Create Release 🏷️
uses: actions/create-release@v1
if: ${{ steps.changelog.outputs.skipped == 'false' }}
env:
GITHUB_TOKEN: ${{ secrets.PA_TOKEN }}
with:
tag_name: ${{ steps.changelog.outputs.tag }}
release_name: ${{ steps.changelog.outputs.tag }}
body: ${{ steps.changelog.outputs.clean_changelog }}
draft: false
prerelease: false