ci: fix nightly db build schedule condition
This commit is contained in:
parent
cda2cfd119
commit
84d7c77dce
2
.github/workflows/dev-db-nightly.yml
vendored
2
.github/workflows/dev-db-nightly.yml
vendored
|
@ -39,7 +39,7 @@ jobs:
|
|||
build-mariadb:
|
||||
name: Build MariaDB Docker Images
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.ref == 'refs/heads/main' && github.event.inputs.skipMariaDBBuild == 'false' }}
|
||||
if: ${{ github.ref == 'refs/heads/main' && (github.event_name == 'schedule' || github.event.inputs.skipMariaDBBuild == 'false' }}
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
|
|
Loading…
Reference in a new issue