Skip to content

Bump AWSSDK.IdentityManagement from 3.7.200.1 to 3.7.200.2 (#166) #332

Bump AWSSDK.IdentityManagement from 3.7.200.1 to 3.7.200.2 (#166)

Bump AWSSDK.IdentityManagement from 3.7.200.1 to 3.7.200.2 (#166) #332

Workflow file for this run

name: Build&Dockerize
on:
push:
branches: [ main ]
tags:
- v*
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
os: [ ubuntu-22.04, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
dotnet-quality: 'preview'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Publish
if: ${{ github.event_name == 'push' }}
run: dotnet publish --configuration Release --no-restore -o publish
- uses: actions/upload-artifact@v3
if: ${{ github.event_name == 'push' }}
with:
name: published-${{ matrix.os }}
path: publish