加入volk 和 wma 后 编译不通过, 先保存代码
This commit is contained in:
+33
@@ -0,0 +1,33 @@
|
||||
name: update
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 16 * * *'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
update:
|
||||
if: github.repository == 'zeux/volk'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||
- name: update
|
||||
run: |
|
||||
python3 generate.py >version.txt
|
||||
echo "VOLK_VERSION=`cat version.txt`" >> $GITHUB_ENV
|
||||
rm version.txt
|
||||
- name: create pr
|
||||
uses: peter-evans/create-pull-request@v6
|
||||
with:
|
||||
branch: update/${{env.VOLK_VERSION}}
|
||||
delete-branch: true
|
||||
commit-message: Update to 1.3.${{env.VOLK_VERSION}}
|
||||
title: Update to 1.3.${{env.VOLK_VERSION}}
|
||||
author: GitHub <noreply@github.com>
|
||||
- name: enable pr automerge
|
||||
run: gh pr merge --merge --auto ${{env.PULL_REQUEST_NUMBER}}
|
||||
env:
|
||||
GH_TOKEN: ${{ github.token }}
|
||||
continue-on-error: true
|
||||
Reference in New Issue
Block a user