Skip to content

Commit

Permalink
rename the output from make package (#677)
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Boten <[email protected]>
  • Loading branch information
Alex Boten authored May 4, 2023
1 parent ae35db9 commit a0536ce
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/layer-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ jobs:

- name: Publish Lambda Layer
run: |
find .
LAYER_ARN=$(
aws lambda publish-layer-version \
--layer-name $LAYER_NAME \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-layer-collector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: opentelemetry-collector-layer-${{ matrix.architecture }}.zip
path: ${{ github.workspace }}/collector/build/collector-extension-${{ matrix.architecture }}.zip
path: ${{ github.workspace }}/collector/build/opentelemetry-collector-layer-${{ matrix.architecture }}.zip
- name: Save Collector Version
if: ${{ matrix.architecture == 'amd64' }}
id: save-collector-version
Expand Down
2 changes: 1 addition & 1 deletion collector/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ package: build
@echo Package zip file for collector extension layer
mkdir -p $(BUILD_SPACE)/collector-config
cp config* $(BUILD_SPACE)/collector-config
cd $(BUILD_SPACE) && zip -r collector-extension-$(GOARCH).zip collector-config extensions
cd $(BUILD_SPACE) && zip -r opentelemetry-collector-layer-$(GOARCH).zip collector-config extensions

.PHONY: publish
publish:
Expand Down

0 comments on commit a0536ce

Please sign in to comment.