We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e86822f commit a752a8cCopy full SHA for a752a8c
.github/workflows/test.yml
@@ -15,5 +15,15 @@ jobs:
15
- run: df -h .
16
- run: df -h /mnt/aux
17
- run: ls -alh /mnt/aux
18
+ - run: |
19
+ mkdir -p jq
20
+ wget --progress=dot:mega https://github.com/jqlang/jq/releases/download/jq-1.8.1/jq-linux-amd64 -O jq/jq
21
+ chmod +x jq/jq
22
+ export PATH=$PWD/jq:$PATH
23
+ echo "$KEYS"
24
+ export HASH="$(echo lorem_ipsum.age | sha256sum | awk '{print $1}')"
25
+ echo $HASH
26
+ echo "$KEYS" | jq -r .\"$HASH\"
27
+ echo "$KEYS" | jq -r .\"$HASH\" | base64 -d
28
- run: _secret_custom_get_tools_v2
29
- run: ls -lah .
0 commit comments