Fix empty investigation results: increase Tor search timeouts from 10… #2
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 Release | |
| on: | |
| push: | |
| branches: [ main ] | |
| permissions: | |
| contents: write | |
| packages: write | |
| jobs: | |
| docker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - 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 }} | |
| - name: Build and push FastAPI Backend | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: . | |
| file: Dockerfile.fastapi | |
| platforms: linux/amd64 | |
| push: true | |
| tags: ${{ secrets.DOCKERHUB_USERNAME }}/voidaccess-api:latest | |
| - name: Build and push Next.js Frontend | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: . | |
| file: Dockerfile.nextjs | |
| platforms: linux/amd64 | |
| push: true | |
| tags: ${{ secrets.DOCKERHUB_USERNAME }}/voidaccess-web:latest | |
| - name: Build and push Tor Proxy | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: . | |
| file: Dockerfile.tor | |
| platforms: linux/amd64 | |
| push: true | |
| tags: ${{ secrets.DOCKERHUB_USERNAME }}/voidaccess-tor:latest |