compose/.github/workflows/cli-release.yaml

43 lines
1.0 KiB
YAML
Raw Normal View History

name: Releaser
2020-05-18 21:35:58 +02:00
on:
push:
tags:
- "v1*"
2020-05-18 21:35:58 +02:00
jobs:
upload-release:
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.16
uses: actions/setup-go@v2
2020-05-18 21:35:58 +02:00
with:
go-version: 1.16
2020-05-18 21:35:58 +02:00
id: go
- name: Setup docker CLI
run: |
curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.3.tgz | tar xz
sudo cp ./docker/docker /usr/bin/ && rm -rf docker && docker version
2020-05-18 21:35:58 +02:00
- name: Checkout code into the Go module directory
uses: actions/checkout@v2
- uses: actions/cache@v2
2020-05-18 21:35:58 +02:00
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Build
run: make -f builder.Makefile cross
2020-05-18 21:35:58 +02:00
- name: License
run: cp packaging/* bin/
2020-05-18 21:35:58 +02:00
- uses: ncipollo/release-action@v1
with:
artifacts: "bin/*"
2020-05-18 21:35:58 +02:00
prerelease: true
token: ${{ secrets.GITHUB_TOKEN }}