Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions .github/workflows/release-udp-exporter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,10 @@ jobs:
exit 1
fi

# TODO: Uncomment when we make the first release
# # Publish OTLP UDP Exporter to npm
# - name: Publish to npm
# working-directory: exporters/aws-otel-otlp-udp-exporter
# env:
# NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
# NPM_CONFIG_PROVENANCE: true
# run: npx publish
# Publish OTLP UDP Exporter to npm
- name: Publish to npm
working-directory: exporters/aws-otel-otlp-udp-exporter
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
NPM_CONFIG_PROVENANCE: true
run: npx publish
2 changes: 1 addition & 1 deletion exporters/aws-otel-otlp-udp-exporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ npm install --save @aws/aws-otel-otlp-udp-exporter
## Usage

```js
import { OTLPUdpSpanExporter } from './otlp-udp-exporter';
import { OTLPUdpSpanExporter } from '@aws/aws-otel-otlp-udp-exporter';
import { SpanExporter } from '@opentelemetry/sdk-trace-base';

// ...
Expand Down
Loading