Skip to content

Commit

Permalink
- macos yml fix for build
Browse files Browse the repository at this point in the history
  • Loading branch information
ozkanpakdil committed May 11, 2024
1 parent 50588ab commit 9f21dbb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
name: Qt5 build
runs-on: macos-latest
steps:
- name: Install dependencies
run: brew install qt@5
- name: Set environment variables
run: echo "PATH=/usr/local/opt/qt@5/bin:$PATH" >> $GITHUB_ENV
run: echo "PATH=$(brew --prefix qt@5)/bin:$PATH" >> $GITHUB_ENV
- name: Generate release tag
id: tag
run: echo "::set-output name=release_date::1.0.$(date +'%m%d%Y')"
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: brew install qt@5
- name: Configure build
run: qmake big-file-editor.pro
- name: Build project
Expand All @@ -36,4 +36,4 @@ jobs:
files: big-file-editor.dmg
tag_name: ${{ steps.tag.outputs.release_date }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 9f21dbb

Please sign in to comment.