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