Release Binary/Images (alpine) #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Binary/Images (alpine) | |
on: | |
workflow_dispatch: | |
release: | |
types: [created] | |
env: | |
REGISTRY: ghcr.io | |
CROSS_SYSROOT: /mnt/alpine | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
arch: [x86_64, aarch64] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Alpine Linux for x86_64 (build arch) | |
uses: jirutka/setup-alpine@v1 | |
with: | |
arch: ${{ matrix.arch }} | |
id: alpine-root | |
packages: > | |
build-base | |
pkgconf | |
linux-headers | |
musl-dev | |
gcc | |
libpcap-dev | |
ca-certificates | |
git | |
go | |
sudo | |
- name: Install LuaJit 2.1 ${{ matrix.arch }} | |
run: | | |
git clone https://luajit.org/git/luajit-2.0.git \ | |
&& cd luajit-2.0 \ | |
&& git checkout v2.1 \ | |
&& make CCOPT="-static -fPIC" BUILDMODE="static" && sudo make install | |
shell: alpine.sh {0} | |
- name: Build ${{ matrix.arch }} | |
run: CGO_ENABLED=1 GOOS=linux go build -a --ldflags '-linkmode external -extldflags "-static -s -w"' -o heplify-${{ matrix.arch }} . | |
shell: alpine.sh {0} | |
- name: Try to run the binary ${{ matrix.arch }} | |
run: ./heplify-${{ matrix.arch }} -h | |
shell: alpine.sh {0} | |
- name: Upload ${{ matrix.arch }} | |
if: ${{ github.event_name != 'workflow_dispatch' }} | |
uses: skx/github-action-publish-binaries@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
args: 'heplify-${{ matrix.arch }}' | |
docker-push: | |
if: ${{ github.event_name != 'workflow_dispatch' }} | |
runs-on: ubuntu-latest | |
needs: build | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v3.2.0 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5.5.1 | |
with: | |
images: | | |
ghcr.io/${{ github.repository }} | |
tags: | | |
latest | |
${{ github.ref_name }} | |
- name: Build and push | |
uses: docker/build-push-action@v5.4.0 | |
with: | |
context: . | |
file: ./docker/heplify/Dockerfile | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} |