12
0
Fork 0
mirror of https://github.com/cycjimmy/semantic-release-action.git synced 2026-05-18 05:41:53 +00:00

fixing more issues cjs->esm

This commit is contained in:
Leif Ødegård Uhlen 2026-05-05 11:41:23 +02:00
parent 26af2a1a36
commit d0e921a535
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
import * as core from '@actions/core';
import exec from './_exec';
import exec from './_exec.js';
import inputs from './inputs.json' with { type: 'json' };;
import path, {dirname} from 'path';
import { fileURLToPath } from 'url';

View file

@ -1,7 +1,7 @@
import path, {dirname} from 'path';
import { fileURLToPath } from 'url';
import * as core from '@actions/core';
import exec from './_exec';
import exec from './_exec.js';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);