Skip to content

Build Release Assets #18

Build Release Assets

Build Release Assets #18

# 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
uses: actions/upload-artifact@v4
with:
path: /tmp/newrelic-lambda-extension.*.zip