fix: entra-id -> entra #13
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: Push to Docker Hub | |
on: | |
push: | |
branches: | |
- "main" | |
- "joey/azure" # TODO: remove this | |
jobs: | |
build-web: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- run: curl -sSL https://nixpacks.com/install.sh | sudo bash | |
- run: nixpacks build . --config apps/web/nixpacks.toml --name flojoy-cloud-web | |
- run: docker tag flojoy-cloud-web flojoyai/cloud-web | |
- run: docker push flojoyai/cloud-web | |
build-server: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- run: curl -sSL https://nixpacks.com/install.sh | sudo bash | |
- run: nixpacks build . --config apps/server/nixpacks.toml --name flojoy-cloud-server | |
- run: docker tag flojoy-cloud-server flojoyai/cloud-server | |
- run: docker push flojoyai/cloud-server |