From 81a0726836fa6e8c1555de1334c50051a9370e0c Mon Sep 17 00:00:00 2001 From: "Robin C. Ladiges" Date: Sat, 13 Aug 2022 22:01:38 +0200 Subject: [PATCH] move latest-dev tag --- .github/workflows/dev-release.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/dev-release.yml b/.github/workflows/dev-release.yml index 386dcb7..4051a44 100644 --- a/.github/workflows/dev-release.yml +++ b/.github/workflows/dev-release.yml @@ -60,3 +60,18 @@ jobs: filename : ${{ needs.build.outputs.filename }} upload_url : ${{ steps.release.outputs.upload_url }} GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} + + move: + needs: attach + runs-on: ubuntu-latest + steps: + - + name : Checkout + uses : actions/checkout@v3 + - + name : Move ${{ env.TAG }} tag + shell : bash + run: | + git config user.email "${{ github.actor }}@users.noreply.github.com" + git tag -f ${{ env.TAG }} + git push --force origin ${{ env.TAG }}