mirror of
https://code.forgejo.org/actions/setup-python
synced 2025-06-08 20:38:19 +02:00
initial commit (#938)
This commit is contained in:
parent
f677139bbe
commit
29a37be0a3
3 changed files with 11 additions and 6 deletions
4
dist/setup/index.js
vendored
4
dist/setup/index.js
vendored
|
@ -92118,7 +92118,9 @@ function extractValue(obj, keys) {
|
|||
*/
|
||||
function getVersionInputFromTomlFile(versionFile) {
|
||||
core.debug(`Trying to resolve version form ${versionFile}`);
|
||||
const pyprojectFile = fs_1.default.readFileSync(versionFile, 'utf8');
|
||||
let pyprojectFile = fs_1.default.readFileSync(versionFile, 'utf8');
|
||||
// Normalize the line endings in the pyprojectFile
|
||||
pyprojectFile = pyprojectFile.replace(/\r\n/g, '\n');
|
||||
const pyprojectConfig = toml.parse(pyprojectFile);
|
||||
let keys = [];
|
||||
if ('project' in pyprojectConfig) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue