Dotnet/289 include resourceownerpasswordgrantauthenticator #311
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: vaas-dotnet-ci | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "dotnet/**" | |
- ".github/workflows/ci-dotnet.yaml" | |
tags: | |
- "cs*" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "dotnet/**" | |
- ".github/workflows/ci-dotnet.yaml" | |
workflow_dispatch: | |
inputs: | |
environment: | |
type: choice | |
description: "Test environment" | |
options: | |
- production | |
- staging | |
default: "production" | |
env: | |
CLIENT_ID: ${{ secrets.CLIENT_ID }} | |
CLIENT_SECRET: ${{ (inputs.environment == 'production' || github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/cs')) && secrets.CLIENT_SECRET || secrets.STAGING_CLIENT_SECRET }} | |
VAAS_URL: ${{ (inputs.environment == 'production' || github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/cs')) && 'wss://gateway.production.vaas.gdatasecurity.de' || 'wss://gateway.staging.vaas.gdatasecurity.de' }} | |
TOKEN_URL: ${{ (inputs.environment == 'production' || github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/cs')) && 'https://account.gdata.de/realms/vaas-production/protocol/openid-connect/token' || 'https://account-staging.gdata.de/realms/vaas-staging/protocol/openid-connect/token' }} | |
jobs: | |
build-dotnet: | |
name: Build & Test C# SDK | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
dotnet-version: ["6.0.x"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }} | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: ${{ matrix.dotnet-version }} | |
- name: Install dependencies | |
run: dotnet restore | |
working-directory: dotnet/Vaas | |
- name: extract version | |
if: startsWith(github.ref, 'refs/tags/cs') | |
run: | | |
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/cs}" >> $GITHUB_ENV | |
echo $RELEASE_VERSION | |
- name: set version | |
if: startsWith(github.ref, 'refs/tags/cs') | |
run: | | |
sed -i "s/<Version>0\.0\.0/<Version>$RELEASE_VERSION/g" ./dotnet/Vaas/src/Vaas/Vaas.csproj | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
working-directory: dotnet/Vaas | |
- name: Test | |
run: dotnet test --no-restore --verbosity normal | |
working-directory: dotnet/Vaas | |
- name: Run example FileScan | |
env: | |
SCAN_PATH: "Program.cs" | |
run: dotnet run FileScan | |
working-directory: dotnet/examples/VaasExample | |
- name: Run example UrlScan | |
run: dotnet run UrlScan | |
working-directory: dotnet/examples/VaasExample | |
- name: Pack | |
if: startsWith(github.ref, 'refs/tags/cs') | |
run: dotnet pack -c Release src/Vaas | |
working-directory: dotnet/Vaas | |
- name: Push to nuget | |
if: startsWith(github.ref, 'refs/tags/cs') | |
env: | |
NUGET_KEY: ${{ secrets.NUGET_KEY }} | |
NUGET_FEED: https://api.nuget.org/v3/index.json | |
run: dotnet nuget push src/Vaas/bin/Release/*.nupkg --skip-duplicate --source $NUGET_FEED --api-key $NUGET_KEY | |
working-directory: dotnet/Vaas | |
- name: Microsoft Teams Notification | |
uses: skitionek/notify-microsoft-teams@master | |
if: failure() | |
with: | |
webhook_url: ${{ secrets.MSTEAMS_WEBHOOK }} | |
overwrite: "{title: `Failed workflow on for VaaS-SDK ${workflow}`, sections: [{activityTitle: 'build failed', activitySubtitle: `Failed workflow on for VaaS-SDK ${workflow}`, activityImage: 'https://adaptivecards.io/content/cats/3.png'}], themeColor: '#ff0000'}" |