diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5b150ac..80e09bd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Action test + env: + SUPER_SECRET: ${{ secrets.HIDDEN_URL }} run: | - curl ${{secrets.TEST_URL}} > hidden.txt + echo "------" + echo "$SUPER_SECRET" + echo "------" + echo -n "$SUPER_SECRET" >> foo && cut -c1-3 foo && cut -c4- foo echo "Retrieved hidden information" echo "-----"