ソースを参照

Trigger Docker and packages workflows only for semantic tags

Go module versioning expect Git tags to start with the letter v.

The goal is to keep the existing naming convention for generated
artifacts and have proper versioning for the Go module.
Frédéric Guillot 2 年 前
コミット
3aad650622
2 ファイル変更4 行追加4 行削除
  1. 3 3
      .github/workflows/docker.yml
  2. 1 1
      .github/workflows/packages.yml

+ 3 - 3
.github/workflows/docker.yml

@@ -4,7 +4,7 @@ on:
     - cron: '0 1 * * *'
   push:
     tags:
-      - '*.*.*'
+      - '[0-9]+.[0-9]+.[0-9]+'
   pull_request:
     branches: [ main ]
 jobs:
@@ -79,13 +79,13 @@ jobs:
         uses: docker/setup-buildx-action@v2
 
       - name: Login to DockerHub
-        uses: docker/login-action@v2 
+        uses: docker/login-action@v2
         with:
           username: ${{ secrets.DOCKERHUB_USERNAME }}
           password: ${{ secrets.DOCKERHUB_TOKEN }}
 
       - name: Login to GitHub Container Registry
-        uses: docker/login-action@v2 
+        uses: docker/login-action@v2
         with:
           registry: ghcr.io
           username: ${{ github.repository_owner }}

+ 1 - 1
.github/workflows/packages.yml

@@ -3,7 +3,7 @@ permissions: read-all
 on:
   push:
     tags:
-      - '*.*.*'
+      - '[0-9]+.[0-9]+.[0-9]+'
 jobs:
   debian-package-builder:
     name: Build Debian Packages