aaronm-2112 is building a Windows release for SODA #793
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: Build-and-deploy-win | |
run-name: ${{ github.actor }} is building a Windows release for SODA | |
on: | |
push: | |
branches: | |
- bundled-soda | |
jobs: | |
deploy-on-windows: | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
miniconda-version: 'latest' | |
activate-environment: bundle-up-too | |
environment-file: tools/anaconda-env/environment-Windows.yml | |
auto-update-conda: true | |
auto-activate-base: false | |
- run: | | |
conda activate bundle-up-too | |
conda info | |
conda list | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20.8.0' | |
- name: Install package.json modules and their dependencies | |
run: npm install --ignore-scripts | |
- name: Deploy the app to GitHub | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
run: | | |
npm run deploy-win |