ADD: small info on readme #131
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: YakBuild | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Python setup | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.x' | |
| - name: Install Python and pythonnet | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.9.10' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install invoke | |
| pip install pythonnet | |
| - name: Install .NET Framework 4.8 | |
| uses: microsoft/[email protected] | |
| - name: Run Invoke tasks | |
| run: invoke yakerize | |
| - name: Save artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: scriptsync_yak_package | |
| path: yaker/build/*.yak |