From 1fdab692ed519742e9f21ed2bdf89fc3659a7066 Mon Sep 17 00:00:00 2001 From: silverqx Date: Sat, 9 Sep 2023 15:36:55 +0200 Subject: [PATCH] updated NOTES.txt --- NOTES.txt | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/NOTES.txt b/NOTES.txt index 06617e5b7..b708669dc 100644 --- a/NOTES.txt +++ b/NOTES.txt @@ -656,6 +656,26 @@ https://github.com/silverqx/files/raw/main/clazy-standalone.tar.bz2 - print all contexts: + Linux: + + - name: Dump pwd + run: pwd + - name: Dump OS env (unsorted) + run: env + - name: Dump OS env (sorted) + run: | + env | sort --ignore-case + + Windows: + + - name: Dump pwd + run: Get-Location + - name: Dump OS env + run: | + Get-ChildItem env: + + Common: + - name: Dump GitHub context env: GITHUB_CONTEXT: ${{ toJSON(github) }}