diff --git a/.github/actions/action.yml b/.github/actions/action.yml index a17b4a9a8c1..5fba1ca1241 100644 --- a/.github/actions/action.yml +++ b/.github/actions/action.yml @@ -49,6 +49,10 @@ inputs: runs: using: 'composite' steps: + - name: Print node name + shell: bash -x -e -u -o pipefail {0} + run: echo "node_name=$NODE_NAME" | tee -a "$GITHUB_OUTPUT" + - name: Checkout repository uses: actions/checkout@v2