We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 332b42a commit 3102283Copy full SHA for 3102283
.github/workflows/ci.yml
@@ -1,5 +1,11 @@
1
name: CI
2
-on: [push, pull_request]
+on:
3
+ push:
4
+ branches: '**'
5
+ tags-ignore: '**'
6
+ pull_request:
7
+ release:
8
+ types: [published]
9
jobs:
10
build:
11
runs-on: windows-latest
@@ -16,7 +22,7 @@ jobs:
16
22
SSL_COM_CREDENTIAL_ID: ${{ github.event_name == 'release' && secrets.SSL_COM_CREDENTIAL_ID || '' }}
17
23
SSL_COM_TOTP_SECRET: ${{ github.event_name == 'release' && secrets.SSL_COM_TOTP_SECRET || '' }}
18
24
SIGN: ${{ github.event_name == 'release' && '--sign' || '' }}
19
- run: python build.py %SIGN%
25
+ run: python build.py $SIGN
20
26
- uses: actions/upload-artifact@v2
21
27
with:
28
name: thelio-io
0 commit comments