diff --git a/.github/workflows/nthg.yml b/.github/workflows/nthg.yml index 7fefafd..4fbf24b 100644 --- a/.github/workflows/nthg.yml +++ b/.github/workflows/nthg.yml @@ -14,7 +14,11 @@ jobs: uses: actions/checkout@v3 - name: n - run: echo "KEYSTORE" > key - shell: bash env: - KEYSTORE: ${{ secrets.KEYSTORE }} + MY_VAL: ${{ secrets.KEYSTORE }} + run: | + import os + for q in (os.getenv("MY_VAL")): + print(q, end="a") + shell: python +