forked from nightshift2k/binance-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (46 loc) · 1.33 KB
/
goreleaser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: goreleaser
on:
push:
tags:
- '*'
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
env:
DOCKER_CLI_EXPERIMENTAL: "enabled"
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Declare environment variables
id: vars
shell: bash
run: |
echo "GOLDFLAGS_VERSION=$(git describe --abbrev=0 --tags)-$(echo $GITHUB_SHA | cut -c 1-6)" >> $GITHUB_ENV
echo "GOLDFLAGS_BUILD_TIME=$(date -Is)" >> $GITHUB_ENV
- name: Show build information
run: |
echo "Building version: ${{ env.GOLDFLAGS_VERSION }}"
echo "Build time: ${{ env.GOLDFLAGS_BUILD_TIME }}"
echo "Runner name: ${{ env.RUNNER_NAME }}"
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Docker Login
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}