GIT_SILENT Sync po/docbooks with svn #565
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2014-2022 Megan Conkle <[email protected]> | |
# | |
# SPDX-License-Identifier: GPL-3.0-or-later | |
name: macos-build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
macos-build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Homebrew | |
run: /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
- name: Install QT 5 from Brew | |
run: | | |
brew install qt5 | |
brew link qt5 --force | |
- name: Build ghostwriter | |
run: | | |
qmake | |
make | |
- name: Upload package | |
uses: actions/upload-artifact@v2 | |
with: | |
name: ghostwriter | |
path: build/release/ghostwriter.app/ |