Skip to content

Commit

Permalink
build: only build on tags, integrate tag into win installer build
Browse files Browse the repository at this point in the history
  • Loading branch information
qdot committed Jul 22, 2023
1 parent 5fcda3f commit 7e90857
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/central.yml
@@ -1,12 +1,14 @@
name: Intiface Central Build

# Only build on master pushes for now, otherwise we'll eat CI.
# Only build on tag pushes
on:
push:
branches:
- main
- dev
- ci
# branches:
# - main
# - dev
# - ci
tags:
- 'v*'

jobs:
windows:
Expand Down Expand Up @@ -39,6 +41,8 @@ jobs:
description: 'Sign Intiface Central Executable'
- name: Build Innosetup Installer
shell: pwsh
env:
BUILD_VERSION: ${{ github.ref_name }}
run: |
iscc .\intiface-central-installer.iss
- uses: dlemstra/code-sign-action@v1
Expand Down

0 comments on commit 7e90857

Please sign in to comment.