CI: build image from phase-0-scaffold branch too (bootstrap)
This commit is contained in:
parent
70275afc06
commit
645c765287
1 changed files with 2 additions and 2 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
|
@ -27,7 +27,7 @@ jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: test
|
needs: test
|
||||||
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/phase-0-scaffold')
|
||||||
outputs:
|
outputs:
|
||||||
image_tag: ${{ steps.meta.outputs.sha }}
|
image_tag: ${{ steps.meta.outputs.sha }}
|
||||||
steps:
|
steps:
|
||||||
|
|
@ -53,7 +53,7 @@ jobs:
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
needs: build
|
needs: build
|
||||||
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/phase-0-scaffold')
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Trigger Woodpecker deploy
|
- name: Trigger Woodpecker deploy
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue