diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 5eadff6..d302c09 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -312,4 +312,43 @@ jobs: tags: git.1159.cl/mario1159/heavy-web platforms: linux/amd64 context: . - file: ./stacks/heavy.Dockerfile \ No newline at end of file + file: ./stacks/heavy.Dockerfile + + build-chipathon-tools: + needs: build-heavy + runs-on: [ubuntu-latest, amd64] + container: + image: catthehacker/ubuntu:act-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Set up Docker BuildX + uses: docker/setup-buildx-action@v2 + + - name: Authentication + uses: docker/login-action@v2 + with: + registry: git.1159.cl + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} + + - name: Build chipathon-tools desktop + uses: docker/build-push-action@v4 + with: + push: true + build-args: BASE_IMG=git.1159.cl/mario1159/heavy-desktop + tags: git.1159.cl/mario1159/chipathon-tools-desktop + platforms: linux/amd64 + context: . + file: ./stacks/chipathon-tools/Dockerfile + + - name: Build chipathon-tools web + uses: docker/build-push-action@v4 + with: + push: true + build-args: BASE_IMG=git.1159.cl/mario1159/heavy-web + tags: git.1159.cl/mario1159/chipathon-tools-web + platforms: linux/amd64 + context: . + file: ./stacks/chipathon-tools/Dockerfile \ No newline at end of file