From 53eeb692438f7df341c97aaa96933f0bfdd5a729 Mon Sep 17 00:00:00 2001 From: Yonokid <37304577+Yonokid@users.noreply.github.com> Date: Sun, 27 Jul 2025 11:59:45 -0400 Subject: [PATCH] Update python-app.yml --- .github/workflows/python-app.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 9791b5b..e21b98b 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -36,7 +36,7 @@ jobs: - name: Create Release Directory run: | mkdir -p release - cp -r Graphics Sounds Videos Songs config.toml release/ + cp -r Graphics Sounds Videos Songs config.toml shader model release/ # Copy executable based on OS if [ "${{ runner.os }}" == "Windows" ]; then cp *.exe release/ 2>/dev/null || true @@ -65,8 +65,8 @@ jobs: if: github.ref == 'refs/heads/main' && github.event_name == 'push' with: files: PyTaiko-${{ runner.os }}-${{ runner.arch }}.zip - name: "PyTaiko [Latest Commit]" - tag_name: "LatestCommit" - prerelease: true + name: "PyTaiko [Rolling Release]" + tag_name: "latest" + make_latest: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}