Skip to content

build(deps): bump the collector-other group across 3 directories with… #15

build(deps): bump the collector-other group across 3 directories with…

build(deps): bump the collector-other group across 3 directories with… #15

name: "Release NodeJS Lambda Layer"
on:
# (Using tag push instead of release to allow filtering by tag prefix.)
push:
tags:
- layer-nodejs/**
permissions:
id-token: write
contents: write
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create Release
run: gh release create ${{ github.ref_name }} --draft --title ${{ github.ref_name }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build-layer:
runs-on: ubuntu-latest
needs: create-release
outputs:
NODEJS_VERSION: ${{ steps.save-node-sdk-version.outputs.SDK_VERSION}}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Build
run: |
npm install
npm run build
working-directory: nodejs
- name: Save Node SDK Version
id: save-node-sdk-version
run: |
SDK_VERSION=$(node version.js)
echo "SDK_VERSION=$SDK_VERSION" >> $GITHUB_OUTPUT
working-directory: nodejs/packages/layer/scripts
- name: Rename zip file
run: mv layer.zip opentelemetry-nodejs-layer.zip
working-directory: nodejs/packages/layer/build
- uses: actions/upload-artifact@v4
name: Save assembled layer to build
with:
name: opentelemetry-nodejs-layer.zip
path: nodejs/packages/layer/build/opentelemetry-nodejs-layer.zip
- name: Add Binary to Release
run: |
gh release upload ${{github.ref_name}} nodejs/packages/layer/build/opentelemetry-nodejs-layer.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish-layer:
uses: ./.github/workflows/layer-publish.yml
needs: build-layer
strategy:
matrix:
aws_region:
- ap-northeast-1
- ap-northeast-2
- ap-south-1
- ap-southeast-1
- ap-southeast-2
- ca-central-1
- eu-central-1
- eu-north-1
- eu-west-1
- eu-west-2
- eu-west-3
- sa-east-1
- us-east-1
- us-east-2
- us-west-1
- us-west-2
with:
artifact-name: opentelemetry-nodejs-layer.zip
layer-name: opentelemetry-nodejs
component-version: ${{needs.build-layer.outputs.NODEJS_VERSION}}
# architecture:
runtimes: nodejs18.x nodejs20.x
release-group: prod
aws_region: ${{ matrix.aws_region }}
secrets: inherit