Skip to content

Add missing -ldflags #23

Add missing -ldflags

Add missing -ldflags #23

name: Build - Continuous
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.21.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Dependencies
run: |
go get .
- name: Build Info
run: |
echo "GIT_BRANCH=$(git rev-parse --abbrev-ref HEAD)" >> "$GITHUB_ENV"
echo "GIT_HASH=$(git rev-parse --verify HEAD)" >> "$GITHUB_ENV"
echo "GIT_DIRTY=$(git diff --quiet; [ $? -eq 0 ] && echo false || echo true)" >> "$GITHUB_ENV"
- name: Build
run: |
CGO_ENABLED=0 go build -ldflags "-X main.gitBranch=$GIT_BRANCH -X main.gitHash=$GIT_HASH -X main.gitDirty=$GIT_DIRTY"
- name: Copy Binary
run: |
mkdir -p release-bin/
cp r2modman-headless release-bin/r2modman-headless-linux-amd64
- uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Development Build"
files: |
LICENSE
release-bin/*