Skip to content

Commit

Permalink
attemp to add auto-release to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
floodfx committed Feb 9, 2022
1 parent 6a8674a commit f78e2d7
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 f78e2d7

Please sign in to comment.