Skip to content

Commit

Permalink
fix: lunary-ee (#350)
Browse files Browse the repository at this point in the history
  • Loading branch information
hughcrt authored Jun 4, 2024
1 parent 91ade93 commit 8c05a52
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build-push-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ jobs:
build-and-push-frontend:
needs: deploy
runs-on: ubuntu-latest
strategy:
matrix:
service: [frontend, lunary-ee]
steps:
- name: Check out the private Ops repo
uses: actions/checkout@v4
Expand Down Expand Up @@ -116,12 +119,12 @@ jobs:
uses: docker/build-push-action@v5
with:
context: .
file: ./ops/frontend.Dockerfile
file: ./ops/${{ matrix.service }}.Dockerfile
push: true
tags: |
lunary/frontend:latest
lunary/frontend:rev-${{ steps.date.outputs.date }}-${{ steps.commit.outputs.hash }}
${{ github.event.release.tag_name != '' && format('lunary/frontend:{0}', 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/arm64,linux/amd64
cache-from: type=gha
cache-to: type=gha,mode=max
2 changes: 1 addition & 1 deletion ops
Submodule ops updated from 090815 to 304150

0 comments on commit 8c05a52

Please sign in to comment.