Skip to content

Commit

Permalink
fix: release.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
malletgaetan committed Dec 29, 2024
1 parent ce510ef commit 08892e9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,30 +1,29 @@
name: Release Binaries

on:
push:
tags:
- 'v*'

permissions:
contents: write

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 }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5 changes: 3 additions & 2 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
- [x] Better error reporting
- [x] Build docker event filter
- [x] Resilience on events listening fail
- [ ] Add more tests
- [ ] CI/CD Pipeline, no push on main (tests, fmt and static analysis)
- [x] Add more tests
- [x] CI/CD Pipeline, no push on main (tests, fmt and static analysis)
- [ ] One file installer

- [ ] Event Type wildcard
- [ ] Windows compatibility

0 comments on commit 08892e9

Please sign in to comment.