From 72b72978295a88df394af36f1c8d4027a47e0d62 Mon Sep 17 00:00:00 2001 From: Ennio Visconti Date: Mon, 17 Jun 2024 11:18:07 +0200 Subject: [PATCH] chore: removed old comments in workflow --- .github/workflows/publish.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2fddeac..831d11f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -46,19 +46,11 @@ jobs: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} restore-keys: ${{ runner.os }}-gradle -# - name: Strip the 'v' character from the version number -# id: strip -# run: echo "stripped={ echo ${{ needs.infer-version.outputs.version }} | cut -c 2- }" >> "$GITHUB_OUTPUT -# shell: bash -# env: -# OUTPUT: ${{ needs.infer-version.outputs.version }} - name: Strip the 'v' character from the version number id: strip run: | stripped=$(echo "${{ needs.infer-version.outputs.version }}" | cut -c 2-) echo "stripped=$stripped" >> "$GITHUB_OUTPUT" -# env: -# STRIPPED_OUTPUT: ${{ steps.strip.outputs.stripped }} - name: Change wrapper permissions run: chmod +x gradlew - name: Run gradle publish (MavenCentral)