-
Notifications
You must be signed in to change notification settings - Fork 95
38 lines (33 loc) · 1.03 KB
/
publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 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