From 3570eed8ac0eef25c18332682f0eb75a98a05406 Mon Sep 17 00:00:00 2001 From: Mario1159 Date: Sat, 23 Sep 2023 22:49:36 -0300 Subject: [PATCH] Add the rest of the stacks to the workflow --- .gitea/workflows/release.yml | 82 +++++++++++++++++++++++++++++++++++- 1 file changed, 81 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 9a5b951..983b220 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -40,4 +40,84 @@ jobs: tags: git.1159.cl/mario1159/osicstacks-base-web platforms: linux/amd64 context: . - file: ./base/web.Dockerfile \ No newline at end of file + file: ./base/web.Dockerfile + + - name: Build analog-xk desktop + uses: docker/build-push-action@v4 + with: + push: true + build-args: BASE_IMG=git.1159.cl/mario1159/osicstacks-base-desktop + tags: git.1159.cl/mario1159/analog-xk-desktop + platforms: linux/amd64 + context: . + file: ./stacks/analog-xk.Dockerfile + + - name: Build analog-xk web + uses: docker/build-push-action@v4 + with: + push: true + build-args: BASE_IMG=git.1159.cl/mario1159/osicstacks-base-web + tags: git.1159.cl/mario1159/analog-xk-web + platforms: linux/amd64 + context: . + file: ./stacks/analog-xk.Dockerfile + + - name: Build analog-xm desktop + uses: docker/build-push-action@v4 + with: + push: true + build-args: BASE_IMG=git.1159.cl/mario1159/osicstacks-base-desktop + tags: git.1159.cl/mario1159/analog-xm-desktop + platforms: linux/amd64 + context: . + file: ./stacks/analog-xm.Dockerfile + + - name: Build analog-xm web + uses: docker/build-push-action@v4 + with: + push: true + build-args: BASE_IMG=git.1159.cl/mario1159/osicstacks-base-web + tags: git.1159.cl/mario1159/analog-xm-web + platforms: linux/amd64 + context: . + file: ./stacks/analog-xm.Dockerfile + + - name: Build analog-heavy desktop + uses: docker/build-push-action@v4 + with: + push: true + build-args: BASE_IMG=git.1159.cl/mario1159/osicstacks-base-desktop + tags: git.1159.cl/mario1159/analog-heavy-desktop + platforms: linux/amd64 + context: . + file: ./stacks/analog-heavy.Dockerfile + + - name: Build analog-heavy web + uses: docker/build-push-action@v4 + with: + push: true + build-args: BASE_IMG=git.1159.cl/mario1159/osicstacks-base-web + tags: git.1159.cl/mario1159/analog-heavy-web + platforms: linux/amd64 + context: . + file: ./stacks/analog-heavy.Dockerfile + + - name: Build digital-ator desktop + uses: docker/build-push-action@v4 + with: + push: true + build-args: BASE_IMG=git.1159.cl/mario1159/osicstacks-base-web + tags: git.1159.cl/mario1159/analog-xm-web + platforms: linux/amd64 + context: . + file: ./stacks/digital-ator.Dockerfile + + - name: Build digital-ator web + uses: docker/build-push-action@v4 + with: + push: true + build-args: BASE_IMG=git.1159.cl/mario1159/osicstacks-base-web + tags: git.1159.cl/mario1159/analog-xm-web + platforms: linux/amd64 + context: . + file: ./stacks/digital-ator.Dockerfile \ No newline at end of file