From 604e65d2347df454b87b275e9e7c001c43d77985 Mon Sep 17 00:00:00 2001 From: Szwendacz Date: Mon, 13 Nov 2023 22:13:25 +0100 Subject: [PATCH] add tor, wireguard, zabbix-agent build in gitea actions --- .gitea/workflows/amd64-image.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/amd64-image.yml b/.gitea/workflows/amd64-image.yml index 6fded9a..957df7e 100644 --- a/.gitea/workflows/amd64-image.yml +++ b/.gitea/workflows/amd64-image.yml @@ -19,13 +19,22 @@ jobs: run: | podman build ./system-toolbox --tag system-toolbox:latest podman build ./cloud-toolbox --tag cloud-toolbox:latest + podman build ./tor --tag tor:latest + podman build ./wireguard --tag wireguard:latest + podman build ./zabbix-agent --tag zabbix-agent:latest - name: login to registry run: podman login -u "${{ secrets.PACKAGES_USERNAME }}" -p "${{ secrets.PACKAGES_PASSWD }}" gitea.maciej.cloud - name: Push image run: | # tagging - podman tag system-toolbox:latest gitea.maciej.cloud/packages/system-toolbox:latest - podman tag cloud-toolbox:latest gitea.maciej.cloud/packages/cloud-toolbox:latest + podman tag system-toolbox:latest gitea.maciej.cloud/packages/system-toolbox:latest + podman tag cloud-toolbox:latest gitea.maciej.cloud/packages/cloud-toolbox:latest + podman tag tor:latest gitea.maciej.cloud/packages/tor:latest + podman tag wireguard:latest gitea.maciej.cloud/packages/wireguard:latest + podman tag zabbix-agent:latest gitea.maciej.cloud/packages/zabbix-agent:latest # pushing podman push gitea.maciej.cloud/packages/system-toolbox:latest podman push gitea.maciej.cloud/packages/cloud-toolbox:latest + podman push gitea.maciej.cloud/packages/tor:latest + podman push gitea.maciej.cloud/packages/wireguard:latest + podman push gitea.maciej.cloud/packages/zabbix-agent:latest