Skip to content

Build Release Assets #26

Build Release Assets

Build Release Assets #26

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Build Release Assets
on:
workflow_dispatch:
release:
types: [published]
jobs:
releases-matrix:
name: Release Zip
runs-on: ubuntu-latest
strategy:
matrix:
make_directive: [zip-x86_64, zip-arm64]
steps:
- uses: actions/checkout@v3
- name: set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21
- name: make zip
run: make ${{ matrix.make_directive }}
- name: upload artifact
env:
GH_TOKEN: ${{ secrets.RELEASE_ASSET_TOKEN }}
run: |
tag=$(gh release list --json tagName -q '.[0].tagName')
file=/tmp/newrelic-lambda-extension.arm64.zip
if [ -f /tmp/newrelic-lambda-extension.x86_64.zip ];then
file=/tmp/newrelic-lambda-extension.x86_64.zip
fi
echo "uploading $file to release $tag"
gh release upload "$tag" "$file"