Skip to content

Commit

Permalink
chore: add action
Browse files Browse the repository at this point in the history
  • Loading branch information
ZaneH committed Jul 2, 2024
1 parent cedfd4d commit 135c304
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/brick.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 135c304

Please sign in to comment.