two deployments and build pipes
Some checks failed
Build and Publish / BuildAndDeploy (push) Failing after 7s
Build and Publish / BuildAndDeployAmd64 (push) Failing after 44s

This commit is contained in:
matst80
2024-11-12 12:35:47 +01:00
parent 37a3a7e2d2
commit 7ea47c2822
2 changed files with 105 additions and 0 deletions

View File

@@ -3,6 +3,16 @@ run-name: ${{ gitea.actor }} is building 🚀
on: [push]
jobs:
BuildAndDeployAmd64:
runs-on: amd64
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Build docker image
run: docker build --progress=plain -t registry.knatofs.se/go-cart-actor-amd64:latest .
- name: Push to registry
run: docker push registry.knatofs.se/go-cart-actor-amd64:latest
BuildAndDeploy:
runs-on: arm64
steps: