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 5a8fa8e commit 67b9e02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@
"test:coverage": "jest --coverage"
},
"dependencies": {
"@actions/core": "1.10.1",
"@actions/exec": "1.1.1",
"@actions/github": "5.1.1"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions scripts/createRelease.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable @typescript-eslint/no-var-requires */

const fs = require('fs')
// const fs = require('fs')
const { getOctokit, context } = require('@actions/github')

const github = getOctokit({
Expand All @@ -9,7 +9,7 @@ const github = getOctokit({
const { owner, repo } = context.repo

for (const tag of process.argv.slice(2)) {
github.rest.repos.createRelease({
github.request(`POST /repos/${owner}/${repo}/releases`, {
owner,
repo,
tag_name: tag,
Expand Down

0 comments on commit 67b9e02

Please sign in to comment.