Disable drawer swipe gesture on iOS #4
Workflow file for this run
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
name: Upload Assets | |
on: | |
push: | |
tags: | |
- '*.*.*' | |
# Due to a flutter bug, flutter build is not generating localizations | |
# workaround by always running flutter pub get immediately before building, | |
# and performing build for msix:create manually to allow implementing this workaround | |
jobs: | |
# test: | |
# name: Run Tests | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Clone repository | |
# uses: actions/checkout@v4 | |
# - uses: actions/setup-java@v4 | |
# with: | |
# distribution: 'zulu' | |
# java-version: '17' | |
# - name: Install dependencies | |
# run: | | |
# sudo apt-get update | |
# sudo apt-get install -y build-essential cmake ninja-build libgtk-3-dev | |
# - name: Set up Flutter | |
# uses: subosito/flutter-action@v2 | |
# with: | |
# channel: 'stable' | |
# - run: flutter doctor | |
# - run: flutter pub get | |
# - run: flutter test | |
upload-linux: | |
name: Build and Upload Linux Assets | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y build-essential cmake ninja-build libgtk-3-dev | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- run: flutter doctor | |
- run: flutter pub get | |
- run: flutter build linux --release --no-pub | |
# copy icon assets and desktop file next to bundle location for easy including in tar archive | |
- run: | | |
cp -r assets/icon/linux/ build/linux/x64/release/icons \ | |
&& cp assets/finamp.desktop.m4 build/linux/x64/release/ \ | |
&& cp assets/com.unicornsonlsd.finamp.metainfo.xml build/linux/x64/release/ | |
# archive bundle and generate checksum | |
- run: GITHUB_REF="${{ github.ref }}" | |
- run: VERSION="${ref#refs/tags/}" | |
- run: | | |
tar -czf finamp-${VERSION}-linux-release.tar.gz --directory build/linux/x64/release/ bundle icons finamp.desktop.m4 com.unicornsonlsd.finamp.metainfo.xml \ | |
&& sha256sum finamp-${VERSION}-linux-release.tar.gz > finamp-${VERSION}-linux-release.tar.gz.sha256sum | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: finamp-${VERSION}-linux-release.tar.gz | |
path: finamp-${VERSION}-linux-release.tar.gz | |
compression-level: 0 # no compression | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: finamp-${VERSION}-linux-release.tar.gz.sha256sum | |
path: finamp-${VERSION}-linux-release.tar.gz.sha256sum | |
compression-level: 0 # no compression | |
- name: Upload release archive | |
uses: alexellis/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
with: | |
asset_paths: '["./finamp-${VERSION}-linux-release.tar.gz", "./finamp-${VERSION}-linux-release.tar.gz.sha256sum"]' |