123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- name: build
- on:
- push:
- branches:
- - 'main'
- tags:
- - 'v*'
- pull_request:
- jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- - name: Set up Go
- uses: actions/setup-go@v3
- with:
- go-version: 1.23
- - name: Cache Go modules
- uses: actions/cache@v3.0.5
- with:
- path: ~/go/pkg/mod
- key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- restore-keys: |
- ${{ runner.os }}-go-
- # -
- # name: Tests
- # run: |
- # go mod tidy
- # go test -v ./...
- - name: Docker Login
- uses: docker/login-action@v2
- with:
- registry: ghcr.io
- username: ${{ github.repository_owner }}
- password: ${{ secrets.GITHUB_TOKEN }}
- - name: Run GoReleaser
- uses: goreleaser/goreleaser-action@v3
- if: success() && startsWith(github.ref, 'refs/tags/')
- with:
- version: latest
- args: release
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|