diff --git a/.gitea/workflows/tryActions.yaml b/.gitea/workflows/tryActions.yaml index dbaae91..3dc9b82 100644 --- a/.gitea/workflows/tryActions.yaml +++ b/.gitea/workflows/tryActions.yaml @@ -19,9 +19,8 @@ jobs: url-pattern: https://dl.gitea.com/act_runner/{{VERSION}}/act_runner-{{VERSION}}-linux-arm-7 start-version: 0.1.1 - run: | - echo "Version found and result returned: ${{steps.versionup.outputs.current_version}}" - echo "Output current_version is ${{steps.versionup.outputs.current_version}}" - echo "Output current_version is ${{current_version}}" + echo Version found and result returned: ${{steps.versionup.outputs.current_version}} + echo Output current_version is ${{steps.versionup.outputs.current_version}} test-job: runs-on: pi diff --git a/index.js b/index.js index 6ddc075..ddca2ba 100644 --- a/index.js +++ b/index.js @@ -72,9 +72,9 @@ async function main() { url_pattern, start_version, )}`; - const export_to = core.getInput("export-to"); + // const export_to = core.getInput("export-to"); core.info(`The new version determend is ${current_version}`); - core.exportVariable("current_version", `${current_version}`); + // core.exportVariable("current_version", `${current_version}`); core.setOutput("current_version", `${current_version}`); } catch (error) { core.setFailed(`Action failed with error: ${error}`);