mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-21 18:55:16 +00:00
move latest-dev tag
This commit is contained in:
parent
2898a762d4
commit
81a0726836
1 changed files with 15 additions and 0 deletions
15
.github/workflows/dev-release.yml
vendored
15
.github/workflows/dev-release.yml
vendored
|
@ -60,3 +60,18 @@ jobs:
|
||||||
filename : ${{ needs.build.outputs.filename }}
|
filename : ${{ needs.build.outputs.filename }}
|
||||||
upload_url : ${{ steps.release.outputs.upload_url }}
|
upload_url : ${{ steps.release.outputs.upload_url }}
|
||||||
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
|
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 }}
|
||||||
|
|
Loading…
Reference in a new issue