[CI] Update release workflows #19
Workflow file for this run
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: Draft Release Windows | |
on: | |
push: | |
tags: | |
- 'v*' | |
workflow_dispatch: | |
jobs: | |
draft-releases: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: install node-gyp | |
run: npm install -g node-gyp | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- run: python3 -m pip install castlabs-evs | |
- run: npm install --legacy-peer-deps | |
- run: npm run release:win | |
env: | |
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }} | |
GH_TOKEN: ${{ secrets.WORKFLOW_TOKEN }} | |
EVS_ACCOUNT_NAME: ${{ secrets.EVS_ACCOUNT_NAME }} | |
EVS_PASSWD: ${{ secrets.EVS_PASSWD }} |