Skip to content

Build Release Assets #23

Build Release Assets

Build Release Assets #23

# 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.19
- name: make zip
run: make ${{ matrix.make_directive }}
- name: upload artifact
env:
AUTH_TOKEN: ${{ secrets.RELEASE_ASSET_TOKEN }}
run: |
tag=$(git tag | sort -V | tail -1)
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 auth login --with-token <<< "$AUTH_TOKEN"
gh release upload "$tag" "$file"