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 3d2e31dCopy full SHA for 3d2e31d
.github/workflows/test.yml
@@ -15,5 +15,17 @@ jobs:
15
- run: df -h .
16
- run: df -h /mnt/aux
17
- run: ls -alh /mnt/aux
18
+ - run: |
19
+ dnf install wget
20
+ wget --version
21
+ mkdir -p jq
22
+ wget --progress=dot:mega https://github.com/jqlang/jq/releases/download/jq-1.8.1/jq-linux-amd64 -O jq/jq
23
+ chmod +x jq/jq
24
+ export PATH=$PWD/jq:$PATH
25
+ echo "$KEYS"
26
+ export HASH="$(echo lorem_ipsum.age | sha256sum | awk '{print $1}')"
27
+ echo $HASH
28
+ echo "$KEYS" | jq -r .\"$HASH\"
29
+ echo "$KEYS" | jq -r .\"$HASH\" | base64 -d
30
- run: _secret_custom_get_tools_v2
31
- run: ls -lah .
0 commit comments