From 5807dbf7f9674c0c30873dec2934fdc77bd07da2 Mon Sep 17 00:00:00 2001 From: soywiz Date: Mon, 23 Nov 2020 01:22:44 +0100 Subject: [PATCH] Remove old workflow --- .github/workflows/DEPLOY.yml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/.github/workflows/DEPLOY.yml b/.github/workflows/DEPLOY.yml index 8989b86..a74bf71 100644 --- a/.github/workflows/DEPLOY.yml +++ b/.github/workflows/DEPLOY.yml @@ -45,27 +45,3 @@ jobs: - uses: actions/checkout@v1 - run: ./gradlew actuallyPublishBintray - publishVersionNumbers: - needs: [publish-finalize] - runs-on: ubuntu-latest - steps: - - name: Get repository name - run: echo "::set-env name=REPOSITORY_NAME::$(echo "$GITHUB_REPOSITORY" | awk -F / '{print $2}')" - - - name: Get version - run: echo "::set-env name=VERSION::${GITHUB_REF/refs\/tags\/v/}" - - - name: Checkout korlibs-versions repo - uses: actions/checkout@v2 - with: - token: ${{ secrets.KORGEBOT_TOKEN }} - repository: korlibs/korlibs-versions - - - name: Bump version numbers - run: | - sed -i 's/'$REPOSITORY_NAME'Version=.*/'$REPOSITORY_NAME'Version='$VERSION'/g' versions.ver - git config --global user.email "githubactionsbot@korge.org" - git config --global user.name "korgebot" - git add versions.ver - git commit -m "${{ env.REPOSITORY_NAME }} bump to ${{ env.VERSION }}" -m "Bumped ${{ env.REPOSITORY_NAME }} version number to ${{ env.VERSION }}" - git push