From 2c56119a31eb0dd8f85cbddda1ed88d1b60f0033 Mon Sep 17 00:00:00 2001 From: "firedcto@gmail.com" Date: Fri, 15 Nov 2024 17:06:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=9B=B4=E6=96=B0=E6=B5=81?= =?UTF-8?q?=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5021b0c..9689221 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,8 +3,10 @@ name: Build Windows Executable on: push: # Sequence of patterns matched against refs/tags - tags: - - 'v*' + # tags: + # - 'v*' + branches: + - master jobs: build: @@ -16,6 +18,11 @@ jobs: with: fetch-depth: 0 # Important: fetch all history for all tags and branches + - name: Set up Git + run: | + git config --global user.email "github-actions[bot]@users.noreply.github.com" + git config --global user.name "GitHub Actions" + - name: Get Changes between Tags id: changes uses: simbo/changes-between-tags-action@v1