Skip to content

Commit

Permalink
Update Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
scurest committed Jul 25, 2024
1 parent 822342f commit e757a9b
Showing 1 changed file with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CD
name: Rolling Release

on:
push:
Expand All @@ -10,7 +10,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Version Info
run: |
Expand All @@ -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
Expand All @@ -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 }}

0 comments on commit e757a9b

Please # to comment.