Skip to content

Commit

Permalink
Merge pull request #28 from floodfx/auto_release
Browse files Browse the repository at this point in the history
attemp to add auto-release to npm
  • Loading branch information
floodfx authored Feb 9, 2022
2 parents 6a8674a + f78e2d7 commit 792730f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: AutoRelease
on:
push:
branches:
- main

jobs:
build:
name: AutoRelease
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Release
uses: justincy/[email protected]
id: release
- name: Print release output
if: ${{ steps.release.outputs.released == 'true' }}
run: echo Release ID ${{ steps.release.outputs.release_id }}

0 comments on commit 792730f

Please sign in to comment.