change affiliate stats table for send plus minus #350
Workflow file for this run
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: Docker Build | |
on: | |
pull_request: | |
types: | |
- closed | |
branches: | |
- 'releases/**' | |
- 'dev' | |
- 'main' | |
jobs: | |
build-docker: | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
# needs: [cache-deps] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Build & Push Docker Image for next-app | |
uses: ./.github/actions/docker-build | |
with: | |
build-nextjs-docker: true | |
push-nextjs-docker-image: true | |
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }} | |
dockerhub_password: ${{ secrets.DOCKERHUB_TOKEN }} |