From 62eb0a9036f30ee97bf0244e7de42b2b8e82ab06 Mon Sep 17 00:00:00 2001 From: Aptivi CEO Date: Sat, 25 Nov 2023 14:46:58 +0300 Subject: [PATCH] dev - Started development of 0.8.4 --- Type: dev Breaking: False Doc Required: False Part: 1/1 --- .github/workflows/build-linux-rel.yml | 42 +++++++++++++++++++++++++++ .github/workflows/build-macos-rel.yml | 42 +++++++++++++++++++++++++++ .github/workflows/build-win-rel.yml | 42 +++++++++++++++++++++++++++ VisualCard/VisualCard.csproj | 8 ++--- tools/version | 2 +- 5 files changed, 131 insertions(+), 5 deletions(-) create mode 100644 .github/workflows/build-linux-rel.yml create mode 100644 .github/workflows/build-macos-rel.yml create mode 100644 .github/workflows/build-win-rel.yml diff --git a/.github/workflows/build-linux-rel.yml b/.github/workflows/build-linux-rel.yml new file mode 100644 index 00000000..ab406928 --- /dev/null +++ b/.github/workflows/build-linux-rel.yml @@ -0,0 +1,42 @@ +name: Build Project (Linux, Release) + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.ref }} + - name: Setup .NET + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '8.0.x' + - name: Solution Compilation + run: dotnet build --configuration Release + - name: Testing + run: dotnet test --no-build --configuration Release + + notify: + + runs-on: ubuntu-latest + needs: + - build + if: ${{ always() }} + + steps: + - name: Notify + uses: nobrayner/discord-webhook@v1 + with: + github-token: ${{ secrets.G_TOKEN }} + discord-webhook: ${{ secrets.DISCORD_WEBHOOK }} + diff --git a/.github/workflows/build-macos-rel.yml b/.github/workflows/build-macos-rel.yml new file mode 100644 index 00000000..616df09f --- /dev/null +++ b/.github/workflows/build-macos-rel.yml @@ -0,0 +1,42 @@ +name: Build Project (macOS, Release) + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + + runs-on: macos-latest + + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.ref }} + - name: Setup .NET + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '8.0.x' + - name: Solution Compilation + run: dotnet build --configuration Release + - name: Testing + run: dotnet test --no-build --configuration Release + + notify: + + runs-on: ubuntu-latest + needs: + - build + if: ${{ always() }} + + steps: + - name: Notify + uses: nobrayner/discord-webhook@v1 + with: + github-token: ${{ secrets.G_TOKEN }} + discord-webhook: ${{ secrets.DISCORD_WEBHOOK }} + diff --git a/.github/workflows/build-win-rel.yml b/.github/workflows/build-win-rel.yml new file mode 100644 index 00000000..e5e861f4 --- /dev/null +++ b/.github/workflows/build-win-rel.yml @@ -0,0 +1,42 @@ +name: Build Project (Windows, Release) + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + + runs-on: windows-latest + + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.ref }} + - name: Setup .NET + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '8.0.x' + - name: Solution Compilation + run: dotnet build --configuration Release + - name: Testing + run: dotnet test --no-build --configuration Release + + notify: + + runs-on: ubuntu-latest + needs: + - build + if: ${{ always() }} + + steps: + - name: Notify + uses: nobrayner/discord-webhook@v1 + with: + github-token: ${{ secrets.G_TOKEN }} + discord-webhook: ${{ secrets.DISCORD_WEBHOOK }} + diff --git a/VisualCard/VisualCard.csproj b/VisualCard/VisualCard.csproj index 95004465..35e661b8 100644 --- a/VisualCard/VisualCard.csproj +++ b/VisualCard/VisualCard.csproj @@ -3,9 +3,9 @@ netstandard2.0 True - 0.8.3 - 0.8.3 - 0.8.3 + 0.8.4 + 0.8.4 + 0.8.4 Aptivi Aptivi A managed VCard contact file parser @@ -21,7 +21,7 @@ True True latest - 0.8.3 + 0.8.4 True ..\aptivi_snk.snk diff --git a/tools/version b/tools/version index ee94dd83..b60d7196 100644 --- a/tools/version +++ b/tools/version @@ -1 +1 @@ -0.8.3 +0.8.4