Skip to content

Commit

Permalink
allgood
Browse files Browse the repository at this point in the history
  • Loading branch information
hughcrt committed May 13, 2024
1 parent e3bbde0 commit 7ebb516
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/build-push-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ jobs:
docker compose down
docker compose up -d
build-lunary-ee:
build-lunary-ee-and-frontend:
strategy:
matrix:
service: [frontend, lunary-ee]
runs-on: ubuntu-latest
steps:
- name: Check out the private Ops repo
Expand Down Expand Up @@ -105,10 +108,10 @@ jobs:
uses: docker/build-push-action@v5
with:
context: .
file: ./ops/lunary-ee.Dockerfile
file: ./ops/{{ matrix.service }}.Dockerfile
push: true
tags: |
lunary/lunary-ee:latest
lunary/lunary-ee:rev-${{ steps.date.outputs.date }}-${{ steps.commit.outputs.hash }}
${{ github.event.release.tag_name != '' && format('lunary/{0}:{1}', 'lunary-ee', steps.release_tag.outputs.tag) || '' }}
lunary/${{ matrix.service }}:latest
lunary/${{ matrix.service }}:rev-${{ steps.date.outputs.date }}-${{ steps.commit.outputs.hash }}
${{ github.event.release.tag_name != '' && format('lunary/{0}:{1}', matrix.service, steps.release_tag.outputs.tag) || '' }}
platforms: linux/amd64

0 comments on commit 7ebb516

Please sign in to comment.