Skip to content

Commit

Permalink
separate release action
Browse files Browse the repository at this point in the history
  • Loading branch information
drernie committed Oct 8, 2023
1 parent d31e6dd commit c874be6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,3 @@ jobs:
provenance: true
- if: ${{ steps.npm-publish.outputs.type == 'published' }}
run: echo "Version changed!"
- name: Create GitHub Release
uses: ncipollo/release-action@v1.13.0
17 changes: 17 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Releases

on:
push:
tags:
- '*'

jobs:

build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Create Release
uses: ncipollo/release-action@v1

0 comments on commit c874be6

Please sign in to comment.