Skip to content

Merge pull request #1 from malletgaetan/tests #2

Merge pull request #1 from malletgaetan/tests

Merge pull request #1 from malletgaetan/tests #2

Workflow file for this run

name: Release Binaries
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Build for Linux (amd64)
run: |
GOOS=linux GOARCH=amd64 go build -o dockermon-linux-amd64
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
with:
files: |
dockermon-linux-amd64
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}