Fix non-AWS ASR download endpoint #27
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
name: Publish Windows Bundle | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- v* | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup NodeJS | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '12' | |
- name: Setup Env | |
run: | | |
npm i | |
npm i -g nexe | |
- name: Build bundle | |
run: | | |
npm run winbundle | |
- name: Upload Bundle File | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Bundle | |
path: dist\*.zip | |
- name: Upload Bundle to Release | |
uses: svenstaro/upload-release-action@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: dist\*.zip | |
file_glob: true | |
tag: ${{ github.ref }} | |
overwrite: true | |