Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
kebekus committed Jul 6, 2024
1 parent 4e7d031 commit e754d98
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
with:
cache: 'true'
cache-key-prefix: 'install-qt-action-macOS-host'
version: '6.*.*'
version: '6.7.*'
- name: Set QT_HOST_PATH
run: |
echo QT_HOST_PATH=$Qt6_DIR >> $GITHUB_ENV
Expand All @@ -32,7 +32,7 @@ jobs:
cache-key-prefix: 'install-qt-action-ios'
modules: 'qtlocation qtpositioning'
target: 'ios'
version: '6.*.*'
version: '6.7.*'
- name: Install software
run: |
brew install ninja
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/sources.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Sources

on:
push:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Package Sources
run: |
cd maplibre-native-qt; tar cvJf ../maplibre-native-qt.tar.xz --exclude='.git' .
- name: Upload to developerBuilds
run: |
gh release upload --clobber developerBuilds *.tar.XZ
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions generateArchive.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ git pull
git submodule update --recursive
git clean -fd

cd maplibre-native-qt
rm -f ../maplibre-native-qt.tar.xz
tar cvJf ../maplibre-native-qt.tar.xz --exclude='.git' .

0 comments on commit e754d98

Please sign in to comment.