Skip to content

feat(core): json serialization/deserialization and refactoring #11

feat(core): json serialization/deserialization and refactoring

feat(core): json serialization/deserialization and refactoring #11

Workflow file for this run

name: Release
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read # for checkout
jobs:
release:
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
name: release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Action For Semantic Release
uses: cycjimmy/semantic-release-action@v4
id: semantic
with:
extra_plugins: |
[email protected]
@semantic-release/[email protected]
@semantic-release/changelog
@semantic-release/git
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}