0
0
mirror of https://github.com/ok-oldking/ok-wuthering-waves.git synced 2025-06-03 09:25:19 +00:00

优化更新流程

This commit is contained in:
firedcto@gmail.com 2024-11-15 17:06:24 +08:00
parent 0e53d28018
commit 2c56119a31

View File

@ -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