1
0
mirror of https://github.com/Ylianst/MeshCentralRouter synced 2026-01-19 00:03:14 +00:00

create release on every new version

This commit is contained in:
Ylian Saint-Hilaire
2022-07-18 20:49:07 -07:00
parent 00fda3333e
commit a885efc4cf
5 changed files with 157 additions and 0 deletions

21
.github/workflows/release.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: Release
on:
push:
branches:
- master
jobs:
build:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Release
uses: justincy/github-action-npm-release@2.0.2
id: release
- name: Print release output
if: ${{ steps.release.outputs.released == 'true' }}
run: echo Release ID ${{ steps.release.outputs.release_id }}