Skip to content

make sure glog only write to stderr using google::LogToStderr() #31

make sure glog only write to stderr using google::LogToStderr()

make sure glog only write to stderr using google::LogToStderr() #31

Workflow file for this run

name: Release CI
on:
push:
branches:
- master
tags:
- '[0-9]+.*'
workflow_dispatch:
jobs:
linux:
uses: ./.github/workflows/linux-build.yml
macos:
uses: ./.github/workflows/macos-build.yml
with:
build_variant: '-universal'
rime_plugins: hchunhui/librime-lua lotem/librime-octagram rime/librime-predict
windows:
uses: ./.github/workflows/windows-build.yml
with:
rime_plugins: hchunhui/librime-lua lotem/librime-octagram rime/librime-predict
release:
needs: [macos, windows]
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
- name: Create Nightly release
if: ${{ 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: |
artifact/*
- name: Create Stable release
if: ${{ github.ref != 'refs/heads/master' }}
uses: 'marvinpinto/action-automatic-releases@latest'
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
draft: true
prerelease: ${{ contains(github.ref_name, '-') }}
title: librime ${{ github.ref_name }}
files: |
artifact/*