Skip to content

Commit

Permalink
feat: deploy batch docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
Nolife999 committed Feb 20, 2024
1 parent d83d1cc commit 2a01a16
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/deploy-on-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,12 @@ jobs:
tags: |
${{ github.event_name == 'release' && format('inseefr/arc-ws:{0}', github.event.release.tag_name) || '' }}
${{ github.ref == 'refs/heads/master' && 'inseefr/arc-ws:latest' || '' }}
- name: Push arc-batch to Docker Hub
uses: docker/build-push-action@v2
with:
push: true
context: .
file: ./app-batch.Dockerfile
tags: |
${{ github.event_name == 'release' && format('inseefr/arc-batch:{0}', github.event.release.tag_name) || '' }}
${{ github.ref == 'refs/heads/master' && 'inseefr/arc-batch:latest' || '' }}

0 comments on commit 2a01a16

Please sign in to comment.