FIX: forgot to set the example action to market ref #28
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_cpy_ghuser_components: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: NuGet/[email protected] | |
- name: Install CPython and pythonnet package | |
run: | | |
choco install python --version=3.9.10 | |
python -m pip install pythonnet==3.0.3 | |
- name: Run | |
uses: ./ | |
with: | |
source: examples/cpy | |
target: build | |
interpreter: cpython | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: cpy_ghuser-components | |
path: build | |
build_ipy_ghuser_components: | |
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: Run | |
uses: ./ | |
with: | |
source: examples/ipy | |
target: build | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: ipy_ghuser-components | |
path: build |