From 9c651045c5422fada778a6b97064a8522c82c4e0 Mon Sep 17 00:00:00 2001 From: soloturn Date: Fri, 11 Mar 2022 06:42:52 +0100 Subject: [PATCH] upload script was renamed, adapt workflow file --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 22f5245ff..ba1cd0921 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: CI gradle +name: CI on: create: @@ -140,11 +140,11 @@ jobs: if: needs.workflow_config.outputs.do_snapshot_release == 'true' env: GITHUB_TOKEN: ${{ github.token }} - run: .github/scripts/release-gradle-snapshot.sh + run: .github/scripts/release-snapshot.sh - name: Create release in GitHub if: needs.workflow_config.outputs.do_release == 'true' env: GITHUB_TOKEN: ${{ github.token }} TAG: ${{ github.event.ref }} - run: .github/scripts/release-gradle.sh + run: .github/scripts/release.sh