Skip to content

Commit

Permalink
Build project when releasing
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalyisaev2 committed Dec 18, 2023
1 parent 4bd4cc8 commit b86c324
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,17 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: |
go get ./...
- name: Build
run: GOOS=linux go build -v -o fq-connector-go ./app
- name: Test
run: go test -v ./app/...
- name: Create tag
run: |
git tag ${{ github.event.inputs.tag }}
Expand Down

0 comments on commit b86c324

Please sign in to comment.