Skip to content

Commit 1c2be86

Browse files
committed
Create .github/workflows/Release.yaml
1 parent 74e8bfa commit 1c2be86

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/Release.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Release
2+
3+
on:
4+
workflow_dispatch:
5+
6+
concurrency:
7+
group: ${{ github.workflow }}
8+
cancel-in-progress: true
9+
10+
jobs:
11+
12+
create-github-release:
13+
runs-on: ubuntu-latest
14+
permissions:
15+
contents: write
16+
steps:
17+
- uses: Wei18/GitHubSwiftActions/Actions/Release@main
18+
with:
19+
owner: ${{ github.repository_owner }}
20+
repo: ${{ github.event.repository.name }}
21+
token: ${{ secrets.GITHUB_TOKEN }}
22+
ref: ${{ github.ref }}
23+
type: "patch"

0 commit comments

Comments
 (0)