Skip to content

Commit

Permalink
Update-index.js-script (#5)
Browse files Browse the repository at this point in the history
removed the lines that edit the image name format
  • Loading branch information
Ritik232 authored Oct 10, 2024
1 parent 4b50166 commit fe3873f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ const listPackagesWithTags = async () => {
try {
const versionedPackages = []
let packagesArray = core.getInput('image_name', { required: true })
packagesArray = packagesArray.replaceAll('\'', '')
packagesArray = packagesArray.split(',').map(x => x.trim())
// packagesArray = packagesArray.replaceAll('\'', '')
// packagesArray = packagesArray.split(',').map(x => x.trim())
const token = core.getInput('GET_PACKAGES_TOKEN', { required: true })
const github = Github.getOctokit(token)
const packageType = core.getInput('package_type', { required: true })
Expand Down

0 comments on commit fe3873f

Please sign in to comment.