Skip to content

Commit

Permalink
Fix biweekly run
Browse files Browse the repository at this point in the history
  • Loading branch information
filip-szweda committed Nov 4, 2024
1 parent 9ba0f47 commit 17487fd
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/biweekly-build-test-and-publish-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ jobs:
biweekly-create-timestamp:
runs-on: ubuntu-latest
outputs:
timestamp: ${{ steps.createTimestamp.outputs.timestamp }}
needs: biweekly-create-tag
if: ${{ needs.biweekly-build-test-and-publish-release.outputs.weekIndex == 0 }}
steps:
Expand All @@ -80,10 +82,12 @@ jobs:

biweekly-build-test-and-publish-release:
runs-on: ${{ matrix.runner }}
strategy:
matrix:
runner: [ubuntu-latest, Linux-ARM-Runner]
arch: [x86_64, arm]
matrix:
include:
- runner: ubuntu-latest
arch: x86_64
- runner: Linux-ARM-Runner
arch: arm_64
needs: [biweekly-create-tag, biweekly-create-timestamp]
if: ${{ needs.biweekly-create-tag.outputs.weekIndex == 0 }}
steps:
Expand All @@ -97,3 +101,4 @@ jobs:
with:
pat-github-token: ${{ secrets.GITHUB_TOKEN }}
arch: ${{ matrix.arch }}
timestamp: ${{ needs.biweekly-create-timestamp.outputs.timestamp }}

0 comments on commit 17487fd

Please sign in to comment.