Skip to content

[R4R] - {0.4.2}: fix dtl sync data bug (#1258) (#1260) #37

[R4R] - {0.4.2}: fix dtl sync data bug (#1258) (#1260)

[R4R] - {0.4.2}: fix dtl sync data bug (#1258) (#1260) #37

Workflow file for this run

name: GoReleaser
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Cache Go modules
uses: actions/cache@v1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}