Update README.md #94
This file contains 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: Publish latest Docker image | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
push_to_registries: | |
name: Push Docker image to multiple registries | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Push frontend to Docker Hub | |
uses: docker/build-push-action@v2 | |
with: | |
tags: f1nnm/rainbow_cards:latest | |
context: ./frontend | |
push: true | |
- name: Push backend to Docker Hub | |
uses: docker/build-push-action@v2 | |
with: | |
tags: f1nnm/rainbow_cards_backend:latest | |
context: ./backend | |
push: true |