We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7296e16 commit 46f6adbCopy full SHA for 46f6adb
1 file changed
.github/workflows/build-linux-android.yml
@@ -16,6 +16,9 @@ jobs:
16
- uses: actions/checkout@v4
17
with:
18
submodules: recursive
19
+ - name: Detect tag
20
+ if: startsWith(github.ref, 'refs/tags/')
21
+ run: echo "TRAVIS_TAG=$GITHUB_REF_NAME" >> $GITHUB_ENV
22
- name: Retrieve the secret and decode it to a file
23
env:
24
MY_KEYSTORE_BASE64: ${{ secrets.MY_KEYSTORE_BASE64 }}
@@ -28,4 +31,6 @@ jobs:
28
31
KEYSTORE_PWD: ${{ secrets.KEYSTORE_PWD }}
29
32
run: bash travis/build_client.bash
30
33
- name: Build server
- run: bash travis/build_and_deploy_server.bash
34
+ run: source env/bin/activate; bash travis/build_and_deploy_server.bash
35
+ - name: Deploy client
36
+ run: bash travis/deploy_client.bash
0 commit comments