Skip to content

update packages

update packages #49

Workflow file for this run

name: release ci
on:
push:
tags:
- '*'
jobs:
build:
runs-on: macos-latest
env:
SQUIRREL_BUNDLED_RECIPES: 'lotem/rime-octagram-data lotem/rime-octagram-data@hant'
steps:
- name: Checkout last commit
uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- 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
- name: Create release
uses: ncipollo/release-action@v1
with:
artifacts: "package/*.zip"
body: |
${{ steps.release_log.outputs.changelog }}
draft: true
token: ${{ secrets.GITHUB_TOKEN }}