Skip to content

Commit 3102283

Browse files
authored
Update CI triggers and fix powershell variable syntax
1 parent 332b42a commit 3102283

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
name: CI
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches: '**'
5+
tags-ignore: '**'
6+
pull_request:
7+
release:
8+
types: [published]
39
jobs:
410
build:
511
runs-on: windows-latest
@@ -16,7 +22,7 @@ jobs:
1622
SSL_COM_CREDENTIAL_ID: ${{ github.event_name == 'release' && secrets.SSL_COM_CREDENTIAL_ID || '' }}
1723
SSL_COM_TOTP_SECRET: ${{ github.event_name == 'release' && secrets.SSL_COM_TOTP_SECRET || '' }}
1824
SIGN: ${{ github.event_name == 'release' && '--sign' || '' }}
19-
run: python build.py %SIGN%
25+
run: python build.py $SIGN
2026
- uses: actions/upload-artifact@v2
2127
with:
2228
name: thelio-io

0 commit comments

Comments
 (0)