Skip to content

Rhino2DFChecker Exporter #1

Rhino2DFChecker Exporter

Rhino2DFChecker Exporter #1

Workflow file for this run

name: build-components
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build_ghuser_components:
runs-on: windows-latest
name: Build components
steps:
- uses: actions/checkout@v2
- uses: NuGet/[email protected]
- name: Install IronPython
run: |
choco install ironpython --version=2.7.8.1
- uses: ./.github/actions/ghpython-components
with:
source: ./src/gh/components
target: build
# upload them as artifacts:
- uses: actions/upload-artifact@v2
with:
name: ghuser-components
path: build
build_release_on_tag:
needs: build_ghuser_components
runs-on: windows-latest
name: Build release
if: startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/checkout@v2
- uses: NuGet/[email protected]