Skip to content

Commit

Permalink
release action was broken (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
majst01 committed Apr 9, 2024
1 parent 8452da6 commit c06f5f1
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,25 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install libsystemd headers
run: sudo apt-get update && sudo apt-get install libsystemd-dev

- name: Set up Go 1.22
uses: actions/setup-go@v5
with:
go-version: "1.22"
cache: false
id: go

- name: Lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v4
with:
args: -p bugs -p unused --timeout=3m
args: -p bugs -p unused -D protogetter --timeout=3m

- name: Docker Login
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ secrets.DOCKER_REGISTRY }}
username: ${{ secrets.DOCKER_REGISTRY_USER }}
Expand Down

0 comments on commit c06f5f1

Please sign in to comment.