push containers with tags
This commit is contained in:
parent
5f9d4b8e85
commit
a840cbe157
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
@ -46,7 +46,7 @@ jobs:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
needs: [build, build-Js] # for ignoring bad builds
|
||||
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
|
||||
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
@ -61,17 +61,21 @@ jobs:
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
- name: Build CLI Container
|
||||
uses: docker/build-push-action@v2
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
push: true
|
||||
tags: sarsoo/selector-cli:latest
|
||||
tags: |
|
||||
sarsoo/selector-cli:latest
|
||||
sarsoo/selector-cli:${{ github.ref_name }}
|
||||
file: Dockerfile.CLI
|
||||
|
||||
- name: Build Web Container
|
||||
uses: docker/build-push-action@v2
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
push: true
|
||||
tags: sarsoo/selector-web:latest
|
||||
tags: |
|
||||
sarsoo/selector-web:latest
|
||||
sarsoo/selector-web:${{ github.ref_name }}
|
||||
file: Dockerfile.Web
|
||||
|
||||
build-Js:
|
||||
|
Loading…
Reference in New Issue
Block a user