Skip to content

docs: flesh out character creation page #8

docs: flesh out character creation page

docs: flesh out character creation page #8

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
release-on-push:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
with:
branches: main
extra_plugins: |
conventional-changelog-conventionalcommits@8.0.0
@semantic-release/commit-analyzer@10.0.1
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}