Skip to content

adding in alpine into build #2

adding in alpine into build

adding in alpine into build #2

Workflow file for this run

on:
push:
tags:
- '*'
name: Build
jobs:
test:
strategy:
matrix:
go-version: [1.16.x, 1.20.x, 1.22.x]
os: [ubuntu-latest, alpine-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