Skip to content

Commit

Permalink
#10 Add test release action
Browse files Browse the repository at this point in the history
  • Loading branch information
SinusStudios committed Apr 18, 2020
1 parent 6aa0b01 commit 5c06b01
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/tagged-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: tagged-release

on:
push:
branches: [ master ]

jobs:
gh_tagged_release:

runs-on: ubuntu-latest

steps:
- name: Checkout source code
uses: actions/checkout@v2

- name: Use Node.js v12
uses: actions/setup-node@v1
with:
node-version: 12

- name: NPM clean install
run: npm ci

- name: Generate build files
run: npm run build

- name: Zip build files
run: zip -r OBScore-Release.zip ./build/

- name: Automatic Releases
uses: marvinpinto/action-automatic-releases@latest
with:
prerelease: true
files: ./build/OBScore-Release.zip

0 comments on commit 5c06b01

Please sign in to comment.