Skip to content

Commit

Permalink
release: test
Browse files Browse the repository at this point in the history
  • Loading branch information
warm-coolguy committed Feb 2, 2024
1 parent 9876ff1 commit 36c3154
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/createRelease.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
const fs = require('fs')

Check failure on line 3 in scripts/createRelease.js

View workflow job for this annotation

GitHub Actions / lint-test

'fs' is assigned a value but never used
const { getOctokit, context } = require('@actions/github')

const github = getOctokit(process.env.GITHUB_TOKEN)
const github = getOctokit({
auth: process.env.GITHUB_TOKEN,
})
const { owner, repo } = context.repo

for (const tag of process.argv.slice(2)) {
Expand Down

0 comments on commit 36c3154

Please sign in to comment.