Skip to content

Commit

Permalink
Merge pull request #155 from hypersign-protocol/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
Pratap2018 authored Feb 17, 2023
2 parents 9d91272 + 26216a8 commit dd9dbaf
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 14

- name: Install Packages
run: npm i
working-directory: server

- name: Build Studio Server
run: cd server && npm i && npm run build
- name: Build Server
run: npm run build
working-directory: server
26 changes: 26 additions & 0 deletions .github/workflows/release-server.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Studio Server Release Workflow

on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
- "[0-9]+.[0-9]+.[0-9]-rc.[0-9]+"

permissions:
contents: write
packages: write

jobs:
release-github:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false

- name: Release
uses: softprops/action-gh-release@v1
with:
prerelease: false
generate_release_notes: true

0 comments on commit dd9dbaf

Please sign in to comment.