We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34a2da4 commit 8df50caCopy full SHA for 8df50ca
.github/workflows/build_release.yaml
@@ -3,7 +3,10 @@ on:
3
4
jobs:
5
build:
6
- runs-on: ubuntu-latest
+ runs-on: ${{
7
+ matrix.docker_arch == 'arm64/v8' && 'ubuntu-24.04-arm' ||
8
+ 'ubuntu-24.04'
9
+ }}
10
permissions:
11
contents: write
12
strategy:
.github/workflows/build_test.yaml
@@ -5,10 +5,15 @@ on:
- 'RELEASE.md'
pull_request:
workflow_dispatch:
+ schedule:
+ - cron: '0 15 * * 2' # Runs at 15:00 (3pm) UTC every Tuesday
13
14
15
16
17
18
matrix:
19
debian_version: [bullseye, bookworm]
0 commit comments