Skip to content

[COMMIT DIST]

[COMMIT DIST] #241

Workflow file for this run

# This workflow will run the deployment.script
# GitHug Action Reference: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: NPM Package Publish Script
on:
push:
branches: [ custom-*, beta, release ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Clean Install
run: npm ci
working-directory: deployment.script
- name: Build
run: npm run build --if-present
working-directory: deployment.script
- name: Deploy
env:
BRANCH_NAME: ${{ github.ref }}
# Override Previous Travis environment variables
TRAVIS: true
TRAVIS_BRANCH: ${{ github.ref }}
TRAVIS_PULL_REQUEST: false
TRAVIS_BUILD_DIR: ${{ github.workspace }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run deploy --if-present
working-directory: deployment.script