mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 11:06:56 +08:00
with-post-step: save-state is deprecated
https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
This commit is contained in:
@@ -25,6 +25,7 @@
|
|||||||
* * https://github.com/actions/runner/issues/1478 *
|
* * https://github.com/actions/runner/issues/1478 *
|
||||||
* ================================================================================================================== */
|
* ================================================================================================================== */
|
||||||
const { spawn } = require("child_process");
|
const { spawn } = require("child_process");
|
||||||
|
const fs = require('fs');
|
||||||
|
|
||||||
function run(cmdline) {
|
function run(cmdline) {
|
||||||
var args = cmdline.split(" ");
|
var args = cmdline.split(" ");
|
||||||
@@ -41,6 +42,6 @@ const key = process.env.INPUT_KEY.toUpperCase();
|
|||||||
if ( process.env[`STATE_${key}`] !== undefined ) { // Are we in the 'post' step?
|
if ( process.env[`STATE_${key}`] !== undefined ) { // Are we in the 'post' step?
|
||||||
run(process.env.INPUT_POST);
|
run(process.env.INPUT_POST);
|
||||||
} else { // Otherwise, this is the main step
|
} else { // Otherwise, this is the main step
|
||||||
console.log(`::save-state name=${key}::true`);
|
fs.appendFileSync(process.env.GITHUB_STATE, `${key}=true`);
|
||||||
run(process.env.INPUT_MAIN);
|
run(process.env.INPUT_MAIN);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user