Extend /home with tz4 and dal bakers count #236
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Dockerhub | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| jobs: | |
| push_to_registry: | |
| name: Push Docker images to Docker Hub | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repo | |
| uses: actions/checkout@v2 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v2 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v2 | |
| - name: Log in to Docker Hub | |
| uses: docker/login-action@v2 | |
| with: | |
| username: ${{ secrets.DOCKER_LOGIN }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Build and push TzKT Sync image | |
| uses: docker/build-push-action@v3 | |
| with: | |
| context: . | |
| platforms: linux/amd64,linux/arm64 | |
| file: Tzkt.Sync/Dockerfile | |
| push: true | |
| tags: bakingbad/tzkt-sync:latest | |
| - name: Build and push TzKT API image | |
| uses: docker/build-push-action@v3 | |
| with: | |
| context: . | |
| platforms: linux/amd64,linux/arm64 | |
| file: Tzkt.Api/Dockerfile | |
| push: true | |
| tags: bakingbad/tzkt-api:latest | |
| - name: Docker Hub TzKT Sync Description Update | |
| uses: peter-evans/dockerhub-description@v2 | |
| with: | |
| username: ${{ secrets.DOCKER_LOGIN }} | |
| password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
| repository: bakingbad/tzkt-sync | |
| - name: Docker Hub TzKT API Description Update | |
| uses: peter-evans/dockerhub-description@v2 | |
| with: | |
| username: ${{ secrets.DOCKER_LOGIN }} | |
| password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
| repository: bakingbad/tzkt-api |