Skip to content

Commit

Permalink
update legacy actions
Browse files Browse the repository at this point in the history
  • Loading branch information
1nv8rzim committed Oct 24, 2023
1 parent 67773f2 commit 9ca2b00
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 32 deletions.
32 changes: 0 additions & 32 deletions .github/workflows/release-plugin.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Create Release

on:
push:
tags:
- "v*.*.*"

jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Create Release
id: create_release
uses: ncipollo/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag: ${{ github.ref_name }}
name: Release ${{ github.ref_name }}
draft: false
prerelease: false

0 comments on commit 9ca2b00

Please sign in to comment.