Skip to content

try again

try again #2

name: build-push-image
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Build Go app
run: make build
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
id: docker-meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/portswigger-it/moroz:latest
- name: Build multiarch Image and push to ghcr.io
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64, linux/arm64
push: true
tags: ghcr.io/portswigger-it/moroz:latest
cache-from: type=registry,ref=ghcr.io/${{ github.repository }}:buildcache-arm64
cache-to: type=registry,ref=ghcr.io/${{ github.repository }}:buildcache-arm64,mode=max