Skip to content

Commit 7f0e06f

Browse files
committed
update legacy actions
1 parent 0c3b75f commit 7f0e06f

File tree

2 files changed

+23
-32
lines changed

2 files changed

+23
-32
lines changed

.github/workflows/release-plugin.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Create Release
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*.*.*"
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
steps:
14+
- name: Create Release
15+
id: create_release
16+
uses: ncipollo/[email protected]
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19+
with:
20+
tag: ${{ github.ref_name }}
21+
name: Release ${{ github.ref_name }}
22+
draft: false
23+
prerelease: false

0 commit comments

Comments
 (0)