Skip to content

Add ghcr.io image URL in README.md #2

Add ghcr.io image URL in README.md

Add ghcr.io image URL in README.md #2

Workflow file for this run

on: [push, pull_request]
name: build
jobs:
build:
strategy:
matrix:
go-version: [1.19.x, 1.20.x]
goarch: [amd64]
runs-on: ubuntu-latest
if: >
(( github.event.pull_request.head.repo.owner.login != github.event.pull_request.base.repo.owner.login ) &&
github.event_name == 'pull_request' ) || (github.event_name == 'push' && github.event.commits != '[]' )
env:
GO111MODULE: on
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Build binaries
env:
GOARCH: ${{ matrix.goarch }}
run: make