From e757a9b48b7188dc954fdc8d1e3ff7e25fac3b7f Mon Sep 17 00:00:00 2001 From: scurest Date: Thu, 25 Jul 2024 06:03:14 -0500 Subject: [PATCH] Update Github actions --- .github/workflows/{cd.yaml => rolling-release.yaml} | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) rename .github/workflows/{cd.yaml => rolling-release.yaml} (68%) diff --git a/.github/workflows/cd.yaml b/.github/workflows/rolling-release.yaml similarity index 68% rename from .github/workflows/cd.yaml rename to .github/workflows/rolling-release.yaml index 9fc83a8..a73f9d5 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/rolling-release.yaml @@ -1,4 +1,4 @@ -name: CD +name: Rolling Release on: push: @@ -10,7 +10,7 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Version Info run: | @@ -19,8 +19,8 @@ jobs: - name: Build run: | - set APICULA_BUILD_COMMIT_HASH=(git log --pretty=format:'%h' -n 1) - set APICULA_BUILD_COMMIT_DATE=(git log --pretty=format:'%cs' -n 1) + $env:APICULA_BUILD_COMMIT_HASH=(git log --pretty=format:'%h' -n 1) + $env:APICULA_BUILD_COMMIT_DATE=(git log --pretty=format:'%cs' -n 1) cargo b --release target/release/apicula.exe -V @@ -39,7 +39,6 @@ jobs: with: allowUpdates: true artifacts: "apicula-latest-windows.zip" - body: > - This is an automated build of the latest source code. + omitBodyDuringUpdate: true + omitNameDuringUpdate: true tag: continuous - token: ${{ secrets.GITHUB_TOKEN }}