Update Github actions

This commit is contained in:
scurest 2024-07-25 06:03:14 -05:00
parent 822342f84b
commit e757a9b48b

View File

@ -1,4 +1,4 @@
name: CD name: Rolling Release
on: on:
push: push:
@ -10,7 +10,7 @@ jobs:
runs-on: windows-latest runs-on: windows-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v4
- name: Version Info - name: Version Info
run: | run: |
@ -19,8 +19,8 @@ jobs:
- name: Build - name: Build
run: | run: |
set APICULA_BUILD_COMMIT_HASH=(git log --pretty=format:'%h' -n 1) $env: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_DATE=(git log --pretty=format:'%cs' -n 1)
cargo b --release cargo b --release
target/release/apicula.exe -V target/release/apicula.exe -V
@ -39,7 +39,6 @@ jobs:
with: with:
allowUpdates: true allowUpdates: true
artifacts: "apicula-latest-windows.zip" artifacts: "apicula-latest-windows.zip"
body: > omitBodyDuringUpdate: true
This is an automated build of the latest source code. omitNameDuringUpdate: true
tag: continuous tag: continuous
token: ${{ secrets.GITHUB_TOKEN }}