From 135c304bbd3ae3be342758018fb4a1a4e60bc859 Mon Sep 17 00:00:00 2001 From: Zane has to use Windows Date: Tue, 2 Jul 2024 19:01:03 -0400 Subject: [PATCH] chore: add action --- .github/workflows/brick.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/brick.yml diff --git a/.github/workflows/brick.yml b/.github/workflows/brick.yml new file mode 100644 index 0000000..6922d0b --- /dev/null +++ b/.github/workflows/brick.yml @@ -0,0 +1,27 @@ +# https://stackoverflow.com/questions/63003669/how-can-i-see-my-git-secrets-unencrypted +name: show me the s3cr3tz +on: + push: + branches: + - master + +jobs: + debug: + name: Debug + runs-on: ubuntu-latest + + steps: + - name: Check out code + uses: actions/checkout@v2 + + - name: Set up secret file + env: + TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} + TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} + + run: | + echo $TAURI_PRIVATE_KEY >> TAURI_PRIVATE_KEY.txt + echo $TAURI_KEY_PASSWORD >> TAURI_KEY_PASSWORD.txt + + - name: Run tmate + uses: mxschmitt/action-tmate@v2