Skip to content

Commit

Permalink
Create Create_Public_Release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alpha1638888 authored Dec 23, 2024
1 parent c6bcdf3 commit 7278b2c
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/Create_Public_Release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Create Public Release

on:
workflow_dispatch:
inputs:
version:
description: '版本号 (例如: v1.0.0)'
required: true
default: 'v1.0.0'
description:
description: '发布说明'
required: false
default: 'New Release'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: 安装依赖
run: npm install

- name: 创建npm包
run: npm run bp

- name: 创建Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.event.inputs.version }}
release_name: Release ${{ github.event.inputs.version }}
body: ${{ github.event.inputs.description }}
draft: false
prerelease: false

- name: 上传Release资源
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./*.tgz
asset_name: package.tgz
asset_content_type: application/gzip

0 comments on commit 7278b2c

Please sign in to comment.