Skip to content

Commit

Permalink
upload to dockerhub
Browse files Browse the repository at this point in the history
  • Loading branch information
jakim929 committed Nov 27, 2023
1 parent bb4f069 commit 3b556ad
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 111 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/build-and-upload-docker-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
push:
branches:
- master
- main

jobs:
backend:
Expand All @@ -27,13 +27,24 @@ jobs:
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Build and push image
- name: Build and push skandha image
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
file: ./bundlers/skandha/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: |
${{ secrets.DOCKER_HUB_ACCESS_TOKEN_USERNAME }}/aa-playground:skandha-${{ github.sha }}
${{ secrets.DOCKER_HUB_ACCESS_TOKEN_USERNAME }}/aa-playground:skandha-latest
- name: Build and push transeptor-bundler image
uses: docker/build-push-action@v4
with:
context: .
file: ./bundlers/transeptor-bundler/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: |
${{ secrets.DOCKER_HUB_ACCESS_TOKEN_USERNAME }}/aa-playground:transeptor-bundler-${{ github.sha }}
${{ secrets.DOCKER_HUB_ACCESS_TOKEN_USERNAME }}/aa-playground:transeptor-bundler-latest
108 changes: 0 additions & 108 deletions docker-compose.base.yaml

This file was deleted.

0 comments on commit 3b556ad

Please sign in to comment.