docs(config): update documentation for config.yaml to add space corre… #36
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: Release | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: {} | |
jobs: | |
release: | |
name: Release Library | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # needed to write releases | |
if: | | |
(github.repository == 'sefaria/AppliedAI') | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: cycjimmy/semantic-release-action@v4 | |
id: semantic | |
with: | |
semantic_version: 18.0.1 | |
extra_plugins: | | |
[email protected] | |
@semantic-release/[email protected] | |
@semantic-release/[email protected] | |
@semantic-release/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |