add lib #3
Workflow file for this run
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 Raw Module | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rm -rf .github | |
- run: mksquashfs raw/ manticore.raw | |
- name: '更新 Update release' | |
uses: zhanghengxin/git-release-private@ice | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
allow_override: true | |
gzip: false | |
tag: ${{ steps.get_version.outputs.VERSION }} | |
files: ./manticore.raw |