Skip to content
This repository has been archived by the owner on Jan 21, 2022. It is now read-only.

Commit

Permalink
Add github action CD workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasjpaterno committed May 14, 2020
1 parent d0b81cb commit b858099
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions workflow/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: ganache-cli CD

on:
push:
branches: [ master, beta ]
pull_request:
branches: [ master, beta ]

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '10'
- run: npm ci
- name: Release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release

0 comments on commit b858099

Please sign in to comment.