Nightly Build #225
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: Nightly Build | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
jobs: | |
nightly-build: | |
uses: ./.github/workflows/ci.yml | |
with: | |
nightly: true | |
code-signing: | |
needs: [nightly-build] | |
uses: ./.github/workflows/code-signing.yml | |
with: | |
signing-policy-slug: test-signing | |
github-artifact-id: ${{ needs.nightly-build.outputs.unsigned-artifact-id }} | |
secrets: | |
api-token: ${{ secrets.SIGNPATH_API_TOKEN }} | |
nightly-release: | |
runs-on: ubuntu-latest | |
name: Nightly Release | |
if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }} | |
needs: [code-signing] | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: Signed Installer | |
path: dist | |
- name: Upload Nightly Release | |
uses: andelf/nightly-release@46e2d5f80828ecc5c2c3c819eb31186a7cf2156c # main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: nightly | |
prerelease: true | |
name: 最新測試版 $$ | |
body: | | |
這是測試中的版本,可能較不穩定。若不確定,請使用正式釋出版。 | |
最近更新: | |
``` | |
TBD | |
``` | |
**Full Changelog**: https://github.com/chewing/windows-chewing-tsf/compare/1ba881c...nightly | |
files: | | |
dist/windows-chewing-tsf.msi | |
dist/windows-chewing-tsf.msi.sha256 |