release ci #16
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 ci | |
on: | |
push: | |
tags: | |
- '*' | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: macos-14 | |
env: | |
SQUIRREL_BUNDLED_RECIPES: 'lotem/rime-octagram-data lotem/rime-octagram-data@hant' | |
steps: | |
- name: Checkout last commit | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Install clang-format | |
run: brew install clang-format | |
- name: Lint | |
run: make clang-format-lint | |
- name: Build Squirrel | |
run: ./action-build.sh archive | |
- name: Build changelog | |
id: release_log | |
run: | | |
echo 'changelog<<EOF' >> $GITHUB_OUTPUT | |
./action-changelog.sh >> $GITHUB_OUTPUT | |
echo 'EOF' >> $GITHUB_OUTPUT | |
if: startsWith(github.ref, 'refs/tags/') | |
- name: Create release | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "package/Squirrel-*.pkg" | |
body: | | |
${{ steps.release_log.outputs.changelog }} | |
draft: true | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create nightly release | |
if: ${{ github.repository == 'rime/squirrel' && github.ref == 'refs/heads/master' }} | |
uses: 'marvinpinto/action-automatic-releases@latest' | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
automatic_release_tag: latest | |
prerelease: true | |
title: "Nightly build" | |
files: | | |
package/Squirrel-*.pkg |