File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 2323
2424jobs :
2525 build :
26- with :
27- container : ${{ inputs.container || 'all' }}
2826 runs-on : ubuntu-latest
2927 steps :
3028 - name : Checkout
3937 uses : docker/setup-buildx-action@v3
4038
4139 - name : Build and push lite
42- if : ${{ github.event.inputs.container == 'all' || github.event.inputs.container == 'lite' }}
40+ if : ${{ github.event.inputs.container == 'all' || github.event.inputs.container == 'lite' || github.event.inputs.container == '' }}
4341 uses : docker/build-push-action@v6
4442 with :
4543 context : .
4846 tags : ${{ secrets.DOCKERHUB_USERNAME }}/pretext:lite
4947
5048 - name : Build and push small
51- if : ${{ github.event.inputs.container == 'all' || github.event.inputs.container == 'small' }}
49+ if : ${{ github.event.inputs.container == 'all' || github.event.inputs.container == 'small' || github.event.inputs.container == '' }}
5250 uses : docker/build-push-action@v6
5351 with :
5452 context : .
5755 tags : ${{ secrets.DOCKERHUB_USERNAME }}/pretext:small
5856
5957 - name : Build and push full
60- if : ${{ github.event.inputs.container == 'all' || github.event.inputs.container == 'full' }}
58+ if : ${{ github.event.inputs.container == 'all' || github.event.inputs.container == 'full' || github.event.inputs.container == '' }}
6159 uses : docker/build-push-action@v6
6260 with :
6361 context : .
You can’t perform that action at this time.
0 commit comments