Skip to content

Commit

Permalink
Disable release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-gromeyer committed Oct 24, 2022
1 parent 2162963 commit acb16e8
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
name: Publish

on:
push:
tags:
- '*'
# push:
# tags:
# - '*'
workflow_dispatch:

jobs:
publish:
name: Publish for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-20.04
Expand All @@ -29,15 +30,15 @@ jobs:

- if: contains( matrix.os, 'windows') || contains( matrix.os, 'macos')
name: Install Qt on Windows and Mac
uses: jurplel/install-qt-action@v2
uses: jurplel/install-qt-action@v3
with:
version: 6.2.4

- if: contains( matrix.os, 'ubuntu')
name: Install Qt on Linux
run: |
sudo apt-get update
sudo apt-get install -y qtbase5-dev qtdeclarative5-dev qttools5-dev libqt5svg5-dev qt5ct dpkg-dev
sudo apt-get install -y qtbase5-dev qtdeclarative5-dev qttools5-dev libqt5svg5-dev libenchant-2-dev qt5ct dpkg-dev
- name: Build
run: |
Expand Down

0 comments on commit acb16e8

Please sign in to comment.