[IDP-2744] Fix auto-merge and nuget conflict #189
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: CI | |
on: | |
pull_request: | |
branches: ["main", "master"] | |
paths-ignore: ["*.md"] | |
push: | |
branches: | |
- "renovate/**" | |
# Prevent duplicate runs if Renovate falls back to creating a PR | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
ci: | |
# Use windows to easily support .NET Framework 4.6.2 targets | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
source-url: ${{ secrets.NUGET_GSOFTDEV_FEED_URL }} | |
env: | |
NUGET_AUTH_TOKEN: ${{ secrets.GSOFT_NUGET_API_KEY }} | |
- run: ./Build.ps1 | |
shell: pwsh | |
env: | |
NUGET_SOURCE: ${{ secrets.NUGET_GSOFTDEV_FEED_URL }} | |
NUGET_API_KEY: ${{ secrets.GSOFT_NUGET_API_KEY }} | |
linearb: | |
needs: [ci] | |
uses: gsoft-inc/wl-reusable-workflows/.github/workflows/linearb-deployment.yml@main | |
with: | |
environment: development | |
secrets: inherit |