Skip to content

Commit

Permalink
chore(linux): Checkout source before building binary packages
Browse files Browse the repository at this point in the history
Since we use an action that is defined in our source tree we have to
checkout the source before we can build the binary packages.
  • Loading branch information
ermshiperete committed Apr 3, 2024
1 parent 73b8ff2 commit 239f145
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/deb-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,12 @@ jobs:

runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c #v3.3.0
with:
ref: '${{ github.event.client_payload.buildSha }}'
sparse-checkout: '.github/actions/'

- name: Build
uses: ./.github/actions/build-binary-packages
with:
Expand All @@ -138,6 +144,12 @@ jobs:

runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c #v3.3.0
with:
ref: '${{ github.event.client_payload.buildSha }}'
sparse-checkout: '.github/actions/'

- name: Build
continue-on-error: true
uses: ./.github/actions/build-binary-packages
Expand Down

0 comments on commit 239f145

Please sign in to comment.