Skip to content
This repository was archived by the owner on Nov 8, 2023. It is now read-only.

Commit 14d297b

Browse files
authored
Create upload-to-release-cloudflareWorker.yml
1 parent 4778678 commit 14d297b

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: upload to release cloudflareWorker
2+
3+
permissions:
4+
contents: write
5+
6+
on:
7+
push:
8+
tags:
9+
- "*.*.*.*"
10+
11+
12+
jobs:
13+
build-jar:
14+
name: 发布cloudflareWorker
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name : 检查
18+
uses: actions/checkout@v3
19+
20+
- name: 创建发行版
21+
uses: softprops/action-gh-release@v1
22+
if: startsWith(github.ref, 'refs/tags/')
23+
with:
24+
files: |
25+
./cloudflareWorker.js
26+

0 commit comments

Comments
 (0)