Skip to content

Commit

Permalink
sync scroll mode fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
eagleoflqj committed Dec 25, 2024
1 parent c895323 commit e581034
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- master
tags:
- '[0-9]+.*'
pull_request:

jobs:
Expand Down Expand Up @@ -75,7 +77,7 @@ jobs:
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3

- name: Release
- name: Create nightly release
if: ${{ github.ref == 'refs/heads/master' }}
uses: 'marvinpinto/action-automatic-releases@latest'
with:
Expand All @@ -85,3 +87,14 @@ jobs:
title: "Nightly Build"
files: |
fcitx5-rime-*.tgz
- name: Create stable release
if: ${{ github.ref_type == 'tag' }}
uses: 'marvinpinto/action-automatic-releases@latest'
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
draft: true
prerelease: false
title: ${{ github.ref_name }}
files: |
fcitx5-rime-*.tgz
2 changes: 1 addition & 1 deletion fcitx5-js
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fcitx5-rime",
"version": "0.1.0",
"version": "0.1.1",
"description": "Fcitx5 Rime as a JavaScript library",
"type": "module",
"main": "dist/Fcitx5.js",
Expand Down

0 comments on commit e581034

Please sign in to comment.