Skip to content

Commit

Permalink
Checkout repo files as first step (#577)
Browse files Browse the repository at this point in the history
Checkout the files from this repo first in order to have the bash
script ready that is needed to block launcher files download.
  • Loading branch information
GeckoEidechse authored Nov 2, 2023
1 parent 72e8e50 commit a11a37e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,15 @@ jobs:
build-northstar:
runs-on: ubuntu-20.04
steps:
- name: Checkout release files
uses: actions/checkout@v3
with:
ref: ${{ env.NORTHSTAR_VERSION }}
path: northstar
- name: Wait for launcher release build to be ready
timeout-minutes: 30 # Only wait for 30 minutes. If we take longer, something probably broke
run:
bash wait_for_launcher_dl.sh
bash northstar/wait_for_launcher_dl.sh
- name: Download compiled launcher
run:
wget "https://github.com/R2Northstar/NorthstarLauncher/releases/download/${{ env.NORTHSTAR_VERSION }}/northstar-launcher.zip"
Expand All @@ -33,11 +38,6 @@ jobs:
- name: Download compiled stubs
run:
wget "https://github.com/R2Northstar/NorthstarStubs/releases/download/v1/NorthstarStubs.zip"
- name: Checkout release files
uses: actions/checkout@v3
with:
ref: ${{ env.NORTHSTAR_VERSION }}
path: northstar
- name: Checkout core mods
uses: actions/checkout@v3
with:
Expand Down

0 comments on commit a11a37e

Please sign in to comment.