From 65c86c7746a892aae4afde410a1d4700b4f1629b Mon Sep 17 00:00:00 2001 From: Christopher Zell Date: Thu, 19 Jan 2023 16:17:40 +0100 Subject: [PATCH] ci: add new release workflow --- .github/workflows/release.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 00000000..5a32d936 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,17 @@ +name: Release Client +on: + push: + branches: + - 'release/**' +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Setup .NET Core + uses: actions/setup-dotnet@v1 + with: + dotnet-version: '3.1.x' + - name: Pack + working-directory: ./Client + run: dotnet pack --configuration Release --no-restore