Skip to content

Commit

Permalink
Update build-windows.yml
Browse files Browse the repository at this point in the history
Adding job: build-program-with-locked-dependencies. Let's see if this works...
  • Loading branch information
razterizer authored Dec 9, 2024
1 parent ec460c0 commit 6943391
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,25 @@ jobs:
run: |
cd $env:GITHUB_WORKSPACE\Pilot_Episode
./build.bat
build-program-with-locked-dependencies:
runs-on: windows-latest

steps:
# Step 1: Checkout the repository
- name: Checkout repository
uses: actions/checkout@v3

# Step 2: Move to the parent directory and fetch dependencies
- name: Fetch dependencies
run: |
cd ..
python Pilot_Episode\fetch-dependencies.py Pilot_Episode\dependencies -y
# Step 3: Change to the correct directory and build
- name: Build project
run: |
cd Pilot_Episode
build.bat
continue-on-error: false # Ensure errors are not bypassed

0 comments on commit 6943391

Please sign in to comment.