Ver código fonte

Update trigger-site-rebuild.yml

Björn Ritzl 3 meses atrás
pai
commit
33cb16c53e
1 arquivos alterados com 8 adições e 0 exclusões
  1. 8 0
      .github/workflows/trigger-site-rebuild.yml

+ 8 - 0
.github/workflows/trigger-site-rebuild.yml

@@ -16,6 +16,14 @@ jobs:
         name: 'Create archives',
         run: 'python create_archives.py'
       },
+      {
+        name: "Create tag",
+        run: 'git tag v${{ steps.git_short_hash.outputs.hash }}'
+      },
+      {
+        name: "Push to tag",
+        run: 'git push origin v${{ steps.git_short_hash.outputs.hash }}'
+      },
       {
         name: 'Release',
         uses: softprops/action-gh-release@v2,