1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-03 21:10:05 +00:00
Files
server/.github/workflows/npmpublish.yml
2021-06-11 08:22:42 +03:00

23 lines
479 B
YAML

name: SASjs Server Deploy
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
- name: Build Project
run: npm run build
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}