-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mainブランチ更新で最新版が-nightlyにリリースされるようにする (#1484)
- Loading branch information
Showing
2 changed files
with
44 additions
and
0 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
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,43 @@ | ||
name: Release latest dev build | ||
|
||
# mainブランチが更新されるたびに開発版をビルドしてデプロイする。 | ||
# バージョン(タグ)は最新リリースのバージョンを`X.Y.Z`としたときの`X.Y+1.0-dev`。 | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- "docs/**" | ||
- "tests/**" | ||
|
||
jobs: | ||
latest-dev-build: | ||
runs-on: ubuntu-latest | ||
if: github.repository_owner == 'VOICEVOX' | ||
steps: | ||
- name: Trigger workflow_dispatch | ||
uses: actions/github-script@v6 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
const latest_release = await github.rest.repos.getLatestRelease({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo | ||
}); | ||
const split_version = latest_release.data.tag_name.split('.'); | ||
const dev_version = `${split_version[0]}.${parseInt(split_version[1]) + 1}.0-dev`; | ||
github.rest.actions.createWorkflowDispatch({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
workflow_id: 'build.yml', | ||
ref: 'main', | ||
inputs: { | ||
version: dev_version, | ||
prerelease: true | ||
} | ||
}) | ||
console.log(`Triggered workflow_dispatch for ${dev_version}`); |