fix: never forget to update the version number... #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://stackoverflow.com/questions/63003669/how-can-i-see-my-git-secrets-unencrypted | |
name: show me the s3cr3tz | |
on: | |
push: | |
branches: | |
- release | |
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 }} | |
run: | | |
echo $TAURI_PRIVATE_KEY >> secrets.txt | |
- name: Run tmate | |
uses: mxschmitt/action-tmate@v2 |