From 6addfeed45ce144e21d931b649761311295bd5c3 Mon Sep 17 00:00:00 2001 From: Yurii Dukhovnyi Date: Wed, 18 Oct 2023 15:23:05 +0300 Subject: [PATCH] print context --- .github/actions/deployment-action/deployment-action.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/deployment-action/deployment-action.js b/.github/actions/deployment-action/deployment-action.js index 127c64cd6..8f1c458f8 100644 --- a/.github/actions/deployment-action/deployment-action.js +++ b/.github/actions/deployment-action/deployment-action.js @@ -2,7 +2,7 @@ const core = require('@actions/core'); const github = require('@actions/github'); try { - console.log(github.context.ref); + console.log(github.context); } catch(error) { core.setFailed(error.message); } \ No newline at end of file