Skip to content

Merge pull request #12 from afonsoft/dependabot/github_actions/action… #81

Merge pull request #12 from afonsoft/dependabot/github_actions/action…

Merge pull request #12 from afonsoft/dependabot/github_actions/action… #81

name: Builds
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build-and-pack:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup NuGet
uses: NuGet/setup-nuget@v2.0.1
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
6.0.x
8.0.x
- name: Clear NuGet cache
run: dotnet nuget locals all --clear
- name: Build Release
run: dotnet build QRCoder.Core.sln --configuration Release --verbosity normal