-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from Sefaria/release
Release
- Loading branch information
Showing
4 changed files
with
61 additions
and
45 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
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 }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
tagFormat: v${version} | ||
plugins: | ||
- - "@semantic-release/commit-analyzer" | ||
- "preset": "conventionalcommits" | ||
"releaseRules": | ||
- {"type": "static", "release": "patch"} | ||
- {"type": "chore", "release": "patch"} | ||
- {"type": "helm", "release": false} | ||
- - "@semantic-release/release-notes-generator" | ||
- "preset": "conventionalcommits" | ||
"presetConfig": | ||
"types": | ||
- {"type": "feat", "section": "Features"} | ||
- {"type": "fix", "section": "Bug Fixes"} | ||
- {"type": "chore", "hidden": true} | ||
- {"type": "docs", "hidden": true} | ||
- {"type": "style", "hidden": true} | ||
- {"type": "refactor", "hidden": true} | ||
- {"type": "perf", "hidden": true} | ||
- {"type": "test", "hidden": true} | ||
- {"type": "static", "section": "Static Content"} | ||
- {"type": "helm", "hidden": true} | ||
- - "@semantic-release/github" | ||
- "successComment": false | ||
# - - "@semantic-release/exec" | ||
# - "prepareCmd": "../build/app-prerelease.sh ${nextRelease.gitTag}" | ||
# - - "@semantic-release/git" | ||
# - assets: | ||
# - ../.github/workflows/deploy.yaml | ||
branches: | ||
- name: "main" |
This file was deleted.
Oops, something went wrong.
File renamed without changes.