From 6ad5badef430d1f081b31d981ff01ca977a66166 Mon Sep 17 00:00:00 2001 From: Mark Sinclair Date: Mon, 8 Nov 2021 11:03:49 +0000 Subject: [PATCH] GitHub Action to publish wallet This is placeholder to allow the action to trigger in branches --- .github/workflows/tauri-wallet-publish.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/tauri-wallet-publish.yml diff --git a/.github/workflows/tauri-wallet-publish.yml b/.github/workflows/tauri-wallet-publish.yml new file mode 100644 index 0000000000..2b6be2578e --- /dev/null +++ b/.github/workflows/tauri-wallet-publish.yml @@ -0,0 +1,12 @@ +name: Publish Tauri Wallet +on: + push: + tags: + - tauri-wallet-* + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Run a one-line script + run: echo Hello, world!