Ignore events for now. #80
Workflow file for this run
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: | |
branches: [master] | |
tags-ignore: ['**'] | |
pull_request: | |
workflow_dispatch: | |
env: | |
DOTNET_NOLOGO: 1 | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
defaults: | |
run: | |
shell: pwsh | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- name: Install .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
6.0.x | |
8.0.x | |
- name: Check out code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # required to publish docs | |
- name: Restore | |
run: .\build.ps1 restore | |
- name: Build | |
run: .\build.ps1 build --skip restore | |
- name: Test | |
run: .\build.ps1 test --skip build | |
- name: Publish | |
if: runner.os == 'Windows' && github.repository_owner == 'FacilityApi' && github.ref == 'refs/heads/master' | |
env: | |
BUILD_BOT_PASSWORD: ${{ secrets.BUILD_BOT_PASSWORD }} | |
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} | |
run: .\build.ps1 publish --skip test | |
- name: Build PIP | |
if: runner.os == 'Linux' | |
run: ./build.ps1 pip | |
- name: Publish PIP | |
if: runner.os == 'Linux' && github.repository_owner == 'FacilityApi' && github.ref == 'refs/heads/master' | |
env: | |
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
run: ./build.ps1 try-pip-publish --skip pip |