Skip to content

Commit

Permalink
测试github打包
Browse files Browse the repository at this point in the history
  • Loading branch information
Mujio-killer committed Dec 17, 2023
1 parent 8e5155a commit f61bdf3
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
name: Release CI

name: test_release
# 触发条件
on:
# 手动触发
workflow_dispatch:

# 具体任务
jobs:
# 任务名称
create-release:
runs-on: ubuntu-latest
outputs:
RELEASE_UPLOAD_ID: ${{ steps.create-release.outputs.id }}

#任务步骤
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Query version number
id: get_version
run: |
echo "using version tag ${GITHUB_REF:10}"
echo ::set-output name=Version::"${GITHUB_REF:10}"
echo "using version tag ${GITHUB_REF}"
echo ::set-output name=Version::"${GITHUB_REF}"
- name: Create Release
id: create-release
Expand Down

0 comments on commit f61bdf3

Please sign in to comment.