You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- name: Release
-
- on:
- push:
- tags:
- - 'v*'
- env:
- GO_VERSION: 1.18
-
- jobs:
- goreleaser:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout Source Code
- uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - name: Setup Go Environment
- uses: actions/setup-go@v3
- with:
- go-version: ${{ env.GO_VERSION }}
- - uses: docker/login-action@v2
- with:
- username: ${{ secrets.DOCKERHUB_USERNAME }}
- password: ${{ secrets.DOCKERHUB_TOKEN }}
- - name: Run GoReleaser
- uses: goreleaser/goreleaser-action@v3
- with:
- version: latest
- args: release --rm-dist
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|