Merge pull request #18 from compas-dev/upload_artifact_v4 #70
This file contains hidden or 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/setup-nuget@v1.0.5 | |
| - 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@v4 | |
| with: | |
| name: cpy_ghuser-components | |
| path: build | |
| build_ipy_ghuser_components: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: NuGet/setup-nuget@v1.0.5 | |
| - 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@v4 | |
| with: | |
| name: ipy_ghuser-components | |
| path: build |