We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e86822f commit 1e85e40Copy full SHA for 1e85e40
1 file changed
.github/workflows/test.yml
@@ -15,5 +15,19 @@ jobs:
15
- run: df -h .
16
- run: df -h /mnt/aux
17
- run: ls -alh /mnt/aux
18
+ - run: |
19
+ sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
20
+ sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*
21
+ dnf install -y wget
22
+ wget --version
23
+ mkdir -p jq
24
+ wget --progress=dot:mega https://github.com/jqlang/jq/releases/download/jq-1.8.1/jq-linux-amd64 -O jq/jq
25
+ chmod +x jq/jq
26
+ export PATH=$PWD/jq:$PATH
27
+ echo "$KEYS"
28
+ export HASH="$(echo lorem_ipsum.age | sha256sum | awk '{print $1}')"
29
+ echo $HASH
30
+ echo "$KEYS" | jq -r .\"$HASH\"
31
+ echo "$KEYS" | jq -r .\"$HASH\" | base64 -d
32
- run: _secret_custom_get_tools_v2
33
- run: ls -lah .
0 commit comments