WIP: test commit #5
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 | |
on: [push] | |
jobs: | |
build: | |
name: windows-ironpython | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: NuGet/[email protected] | |
- name: Install IronPython | |
run: | | |
choco install ironpython --version=2.7.8.1 | |
- name: Install dependencies | |
run: | | |
nuget install Grasshopper -OutputDirectory ./lib -source https://api.nuget.org/v3/index.json | |
- name: Run | |
run: | | |
ipy componentize.py examples build | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: ghuser-components | |
path: build |