[Chore]调试workflows
This commit is contained in:
parent
028ecb70c5
commit
5a7b9bdf45
1 changed files with 18 additions and 0 deletions
18
.github/workflows/delete.yaml
vendored
Normal file
18
.github/workflows/delete.yaml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: Delete Release Assets
|
||||
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
deleteReleaseAssets:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Check out Git repository
|
||||
uses: actions/checkout@v1
|
||||
|
||||
- name: Delete current release assets
|
||||
uses: andreaswilli/delete-release-assets-action@<version>
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
# tagPrefix: v
|
||||
tag: alpha
|
Loading…
Reference in a new issue