Skip to content

Commit

Permalink
Update release process
Browse files Browse the repository at this point in the history
  • Loading branch information
Roaders committed May 20, 2022
1 parent de52421 commit afc49ea
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 25 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/create-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Create Release

on:
push:
branches: [ main ]
workflow_dispatch:

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:

- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '16.x'

- name: Install node modules and verify build
run: npm ci && npm run build-release

- name: Release
if: github.repository == 'morganstanley/needle'
uses: justincy/[email protected]
id: release
with:
token: ${{ secrets.RELEASE_TOKEN }}

- name: Print release output
if: ${{ steps.release.outputs.released == 'true' }}
run: echo Release ID ${{ steps.release.outputs.release_id }}

- name: Publish
if: steps.release.outputs.released == 'true'
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}
25 changes: 0 additions & 25 deletions .github/workflows/release.yml

This file was deleted.

0 comments on commit afc49ea

Please sign in to comment.