Skip to content

Commit

Permalink
better artifact naming
Browse files Browse the repository at this point in the history
  • Loading branch information
seemk committed Nov 28, 2024
1 parent c63e88d commit b324a19
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/nginx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,9 @@ jobs:
--build-arg image=${{ matrix.image }} \
--target export \
--output type=local,dest=/tmp/otel_ngx .
echo "artifactName=otel_ngx_module-$(echo ${{ matrix.image }} | sed s/-/:/).so" >> $GITHUB_ENV
- name: upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: otel_ngx_module-${{ matrix.image }}.so
name: ${{ env.artifactName }}
path: /tmp/otel_ngx/otel_ngx_module.so

0 comments on commit b324a19

Please sign in to comment.