Skip to content

Commit

Permalink
Update windows.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbrechtL authored Aug 31, 2024
1 parent f3b8bd0 commit 3b0a4f8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,23 +28,23 @@ jobs:

- name: Preapre build
run: |
echo Create datetime
echo "Create datetime"
$current_date=$(Get-Date -Format 'yyyyMMdd')
"current_date=$current_date" >> $env:GITHUB_ENV
echo Create git hash
echo "Create git hash"
$git_hash=$(git -C . rev-parse --short HEAD)
"git_hash=$git_hash" >> $env:GITHUB_ENV
echo Create version
echo "Create version"
$file_version="$($current_date)_$($git_hash)"
"file_version=$file_version" >> $env:GITHUB_ENV
echo Create a build directory
echo "Create a build directory"
cd ..\
md build
REM Get all headers and DLLs for the build
echo "Get all headers and DLLs for the build"
git clone https://github.com/AlbrechtL/welle.io-win-libs.git
- name: Display environment variables
Expand Down

0 comments on commit 3b0a4f8

Please sign in to comment.