Skip to content

Commit

Permalink
Ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ElTh0r0 committed May 20, 2024
1 parent 39dd185 commit 3358cf8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,14 @@ jobs:

- name: Install Dependencies
run: |
brew install p7zip qt ffsend
PATH=/usr/local/opt/qt/bin/:${PATH}
brew install p7zip
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: '6.5.*'
host: 'mac'
target: 'desktop'

- name: Compile
run: |
Expand All @@ -85,4 +91,4 @@ jobs:
- name: Upload macOS zip
run: |
cd build
ffsend upload StackAndConquer_*_macOS.zip
curl --upload-file ./StackAndConquer_*_macOS.zip https://transfer.adminforge.de/StackAndConquer_macOS.zip
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand Down Expand Up @@ -57,4 +57,4 @@ jobs:
make
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3

0 comments on commit 3358cf8

Please sign in to comment.