Skip to content

Commit

Permalink
feat: build and push sidecar containers PE-6104 (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
fedellen authored May 10, 2024
2 parents ba45091 + f584a00 commit b642484
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:latest
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:latest
ghcr.io/ardriveapp/${{ github.event.repository.name }}-localstack:${{ github.sha }}

0 comments on commit b642484

Please sign in to comment.