From d09fd5b3613585d96514938c5279c09db125887e Mon Sep 17 00:00:00 2001 From: graphemecluster Date: Wed, 18 Dec 2024 09:21:10 +0800 Subject: [PATCH] Omit URL to the release page in the commit message in `update-website-links.yml` It is no longer relevant since we now always release the installers to the `latest` tag. --- .github/workflows/update-website-links.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/update-website-links.yml b/.github/workflows/update-website-links.yml index a6a4243..aad210f 100644 --- a/.github/workflows/update-website-links.yml +++ b/.github/workflows/update-website-links.yml @@ -45,13 +45,11 @@ jobs: echo "$existingUrls" > src/urls.json - name: Commit and push changes - env: - RELEASE: ${{ github.event.release.html_url }} run: | git config user.email "41898282+github-actions[bot]@users.noreply.github.com" git config user.name "github-actions[bot]" git add src/urls.json if [ -n "$(git status --porcelain)" ]; then # Push to GitHub if contents changed - git commit -m "Update URLs from $RELEASE" + git commit -m "Update Installer URLs" git push origin main fi