Skip to content

feat: ichiyoAI v1.13.0 (#120) #106

feat: ichiyoAI v1.13.0 (#120)

feat: ichiyoAI v1.13.0 (#120) #106

Workflow file for this run

name: Release ichiyoAI
on:
push:
branches:
- main
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get token
id: ichiyoai-token
uses: tibdex/github-app-token@v2
with:
app_id: ${{ secrets.HIGUCHI_ICHIYO_APP_ID }}
private_key: ${{ secrets.HIGUCHI_ICHIYO_PRIVATE_KEY }}
- name: Run release-please-action
uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: rust
token: ${{ steps.ichiyoai-token.outputs.token }}
command: manifest
package-name: ichiyoAI
- name: Publish the Docker package
if: steps.release.outputs.release_created
uses: ./.github/actions/publish
with:
major: ${{ steps.release.outputs.major }}
minor: ${{ steps.release.outputs.minor }}
patch: ${{ steps.release.outputs.patch }}
sha: ${{ steps.release.outputs.sha }}