Explorar el Código

Update `latest` tag when new release

yhirose hace 1 mes
padre
commit
b4d16a582d
Se han modificado 1 ficheros con 19 adiciones y 0 borrados
  1. 19 0
      .github/workflows/tag-latest.yml

+ 19 - 0
.github/workflows/tag-latest.yml

@@ -0,0 +1,19 @@
+name: Update latest tag
+
+on:
+  release:
+    types: [published]
+
+jobs:
+  tag-latest:
+    runs-on: ubuntu-latest
+    permissions:
+      contents: write
+    steps:
+      - name: Checkout code
+        uses: actions/checkout@v4
+
+      - name: Force-update latest tag
+        run: |
+          git tag -f latest
+          git push origin latest --force