Merge pull request #4927 from OfficeDev/shanshanzheng-change-driverName #266
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |