Skip to content

Merge pull request #3 from globalsign/sid-th-patch-1-1 #4

Merge pull request #3 from globalsign/sid-th-patch-1-1

Merge pull request #3 from globalsign/sid-th-patch-1-1 #4

Workflow file for this run

on:
push:
tags:
- '*'
name: Build
jobs:
test:
strategy:
matrix:
go-version: [1.16.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Build Binaries
shell: bash
run:
./scripts/build-all-arch.sh
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: release/atlas-*
tag: v1.0
overwrite: true
file_glob: true