Skip to content

Commit

Permalink
feat: build and push sidecar containers PE-6104
Browse files Browse the repository at this point in the history
  • Loading branch information
fedellen committed May 9, 2024
1 parent ba45091 commit d3e92aa
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/test_and_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,28 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push container image to GitHub Container Registry
- name: Build and push upload service container image to GitHub Container Registry
uses: docker/build-push-action@v4
with:
push: true
tags: |
ghcr.io/ardriveapp/${{ github.event.repository.name }}:latest
ghcr.io/ardriveapp/${{ github.event.repository.name }}:${{ github.sha }}
- name: Build and push fulfillment container image to GitHub Container Registry
uses: docker/build-push-action@v4
with:
file: Dockerfile.fulfillment
push: true
tags: |
ghcr.io/ardriveapp/${{ github.event.repository.name }}:fulfillment
ghcr.io/ardriveapp/${{ github.event.repository.name }}:fulfillment-${{ github.sha }}
- name: Build and push localstack container image to GitHub Container Registry
uses: docker/build-push-action@v4
with:
file: Dockerfile.localstack
push: true
tags: |
ghcr.io/ardriveapp/${{ github.event.repository.name }}:localstack
ghcr.io/ardriveapp/${{ github.event.repository.name }}:localstack-${{ github.sha }}

0 comments on commit d3e92aa

Please sign in to comment.