From 712948a6582c392b2084767617b95a1edb097dff Mon Sep 17 00:00:00 2001 From: Dominik Przybyl Date: Mon, 6 May 2024 01:36:00 +0200 Subject: [PATCH] minor --- .github/workflows/release.yaml | 23 ++++++----------------- 1 file changed, 6 insertions(+), 17 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5964706..b0e81f3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -58,20 +58,17 @@ jobs: run: git fetch --prune --unshallow --tags - name: Generate SDK run: make build - - name: Check worktree clean - run: | - git update-index -q --refresh - if ! git diff-files --quiet; then - >&2 echo "error: working tree is not clean, aborting!" - git status - git diff - exit 1 - fi strategy: fail-fast: true matrix: + dotnetversion: + - 6.0.x goversion: - 1.20.x + nodeversion: + - 21.x + pythonversion: + - "3.9" publish_sdk: name: Publish SDKs runs-on: ubuntu-latest @@ -120,16 +117,8 @@ jobs: strategy: fail-fast: true matrix: - dotnetversion: - - 6.0.x - goversion: - - 1.20.x language: - nodejs - python - dotnet - go - nodeversion: - - 21.x - pythonversion: - - "3.9"