Skip to content

Commit

Permalink
chore: hardcode signalfx as the namespace for github release (#337)
Browse files Browse the repository at this point in the history
* chore: hardcode `signalfx` as the namespace for github release
* chore: use environment vars configured in the mirrored repo
  • Loading branch information
rauno56 authored Oct 5, 2021
1 parent 5c9eae5 commit d881e82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/release-github.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ async function createRelease() {
const tag = `v${version}`;
console.log(`Tag: ${tag}`);

const owner = 'jtmalinowski';
const repo = 'splunk-otel-js';
const owner = process.env.GITHUB_OWNER ?? 'signalfx';
const repo = process.env.GITHUB_REPO ?? 'splunk-otel-js';
console.log(`Repo: ${owner}/${repo}`);

const commit = process.env.CI_COMMIT_SHA;
Expand Down

0 comments on commit d881e82

Please sign in to comment.