Skip to content

[Fix] Caps and Shift should negate each other #55

[Fix] Caps and Shift should negate each other

[Fix] Caps and Shift should negate each other #55

Workflow file for this run

name: release ci
on:
push:
tags:
- '*'
branches:
- master
paths:
- 'sources/**'
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 SwiftLint
run: brew install swiftlint
- name: Lint
run: swiftlint
- name: Build Squirrel
run: ./action-build.sh archive
- name: Install periphery
run: brew install peripheryapp/periphery/periphery
- name: Check Unused Code
run: periphery scan --skip-build --index-store-path build/Index.noindex/DataStore
- 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