diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index 3a750dec..0756a793 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -119,11 +119,10 @@ jobs: - name: Update Tag if: github.ref == 'refs/heads/master' - uses: EndBug/latest-tag@latest - with: - tag-name: continuous-build - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + shell: bash + run: | + git tag --force continuous-build ${GITHUB_SHA} + git push --force --tags - name: Update Continuous Build Release if: github.ref == 'refs/heads/master' diff --git a/.github/workflows/ci-win.yml b/.github/workflows/ci-win.yml index 60297acc..1a9f542e 100644 --- a/.github/workflows/ci-win.yml +++ b/.github/workflows/ci-win.yml @@ -107,11 +107,10 @@ jobs: - name: Update Tag if: github.ref == 'refs/heads/master' - uses: EndBug/latest-tag@latest - with: - tag-name: continuous-build - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + shell: bash + run: | + git tag --force continuous-build ${GITHUB_SHA} + git push --force --tags - name: Update Continuous Build Release if: github.ref == 'refs/heads/master'