Skip to content

feat: CI introduced

feat: CI introduced #7

Workflow file for this run

name: CI
permissions:
contents: write
on:
push:
tags:
- "v*"
jobs:
publish:
name: Deploying ${{ matrix.build_target }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
build_target: [macos, linux32, linux64]
include:
- build_target: macos
os: macos-latest
artifact_suffix: macos-x86_64
target_os: darwin
target_arch: amd64
- build_target: linux32
os: ubuntu-latest
artifact_suffix: linux-x86_32
target_arch: 386
target_os: linux
- build_target: linux64
os: ubuntu-latest
artifact_suffix: linux-x86_64
target_arch: amd64
target_os: linux
steps:
- name: Set up access
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22.3'
- name: Build
run: GOOS=${{ matrix.target_os }} GOARCH=${{ matrix.target_arch }} go build
- name: Package
shell: bash
run: |
ls -la
strip lnch
tar czvf lnch-${{ matrix.artifact_suffix }}.tar.gz lnch*
- name: Release
uses: softprops/action-gh-release@v1
with:
files: lnch-${{ matrix.artifact_suffix }}.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}