diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 000000000..26360ebcd --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,27 @@ +name: "Build" + +on: + push: + branches: [ master ] + paths: + - "**.cs" + - "**.csproj" + +env: + DOTNET_VERSION: "7.0.102" + +jobs: + build: + name: "Build" + runs-on: "windows-latest" + steps: + - uses: actions/checkout@v3 + - name: Setup .NET + uses: actions/setup-dotnet@v3 + with: + dotnet-version: ${{ env.DOTNET_VERSION }} + + - name: Build All + run: .\build-aspnetcore-build-sln.ps1 -f + working-directory: .\build + shell: powershell diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 26a39ee8d..e5c10a290 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,4 +14,4 @@ jobs: with: repo_token: "${{ secrets.GITHUB_TOKEN }}" prerelease: false - automatic_release_tag: "7.0.1" + automatic_release_tag: "7.0.2"