Skip to content

Copy upstream response into http writer #111

Copy upstream response into http writer

Copy upstream response into http writer #111

Workflow file for this run

name: build
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
fetch-depth: 1
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.22.x
- name: Make all
run: make all
- name: Get TAG
id: get_tag
run: echo TAG=${GITHUB_REF#refs/tags/} >> $GITHUB_ENV
- name: Get Repo Owner
id: get_repo_owner
run: echo "REPO_OWNER=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]')" > $GITHUB_ENV
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Test and Build multiarch
id: docker_build
uses: docker/build-push-action@v5
with:
context: ./
file: ./Dockerfile
outputs: "type=image,push=false"
platforms: linux/amd64,linux/arm64,linux/arm/v7
tags: |
ghcr.io/${{ env.REPO_OWNER }}/of-watchdog:${{ github.sha }}