Skip to content

Commit a0536ce

Browse files
author
Alex Boten
authored
rename the output from make package (aws-observability#677)
Signed-off-by: Alex Boten <[email protected]>
1 parent ae35db9 commit a0536ce

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/layer-publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ jobs:
7676

7777
- name: Publish Lambda Layer
7878
run: |
79-
find .
8079
LAYER_ARN=$(
8180
aws lambda publish-layer-version \
8281
--layer-name $LAYER_NAME \

.github/workflows/release-layer-collector.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- uses: actions/upload-artifact@v3
3131
with:
3232
name: opentelemetry-collector-layer-${{ matrix.architecture }}.zip
33-
path: ${{ github.workspace }}/collector/build/collector-extension-${{ matrix.architecture }}.zip
33+
path: ${{ github.workspace }}/collector/build/opentelemetry-collector-layer-${{ matrix.architecture }}.zip
3434
- name: Save Collector Version
3535
if: ${{ matrix.architecture == 'amd64' }}
3636
id: save-collector-version

collector/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ package: build
4444
@echo Package zip file for collector extension layer
4545
mkdir -p $(BUILD_SPACE)/collector-config
4646
cp config* $(BUILD_SPACE)/collector-config
47-
cd $(BUILD_SPACE) && zip -r collector-extension-$(GOARCH).zip collector-config extensions
47+
cd $(BUILD_SPACE) && zip -r opentelemetry-collector-layer-$(GOARCH).zip collector-config extensions
4848

4949
.PHONY: publish
5050
publish:

0 commit comments

Comments
 (0)