-
-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Temporarily don't build application for linux
See #577
- Loading branch information
1 parent
3811831
commit 1e2ba23
Showing
1 changed file
with
32 additions
and
32 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,14 +57,14 @@ jobs: | |
flutter pub run cider version ${{ env.VERSION }}+${{ env.BUILD }} | ||
flutter pub run cider bump build | ||
- name: Build application for linux | ||
run: | | ||
sudo apt update | ||
sudo apt install -y clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev libstdc++-12-dev | ||
flutter build linux --release | ||
cd flatpak/scripts | ||
dart pub get | ||
dart flatpak_packager.dart --meta ../flatpak_meta.json --github --addTodaysVersion ${{ env.VERSION }} | ||
# - name: Build application for linux | ||
# run: | | ||
# sudo apt update | ||
# sudo apt install -y clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev libstdc++-12-dev | ||
# flutter build linux --release | ||
# cd flatpak/scripts | ||
# dart pub get | ||
# dart flatpak_packager.dart --meta ../flatpak_meta.json --github --addTodaysVersion ${{ env.VERSION }} | ||
|
||
- name: Build AAB | ||
run: flutter build appbundle --release | ||
|
@@ -88,30 +88,30 @@ jobs: | |
files: | | ||
build/app/outputs/bundle/release/app-release.aab | ||
build/app/outputs/bundle/release/app-release.apk | ||
flatpak/scripts/flatpak_generator_exports/wger-linux-x86_64.tar.gz | ||
flatpak/scripts/flatpak_generator_exports/wger-linux-x86_64.sha256 | ||
- name: Generate flathub manifest | ||
run: | | ||
cd flatpak/scripts | ||
dart pub get | ||
dart manifest_generator.dart --meta ../flatpak_meta.json --github | ||
mkdir ../../flathub | ||
cp flatpak_generator_exports/de.wger.flutter.json ../../flathub | ||
cp flatpak_generator_exports/flathub.json ../../flathub | ||
- name: Push updated config to flathub repository | ||
uses: cpina/github-action-push-to-another-repository@main | ||
env: | ||
SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }} | ||
with: | ||
source-directory: flathub | ||
destination-github-username: wger-project | ||
destination-repository-name: de.wger.flutter | ||
user-email: [email protected] | ||
target-branch: release-${{ env.VERSION }} | ||
create-target-branch-if-needed: true | ||
commit-message: Update to ${{ env.VERSION }} | ||
# flatpak/scripts/flatpak_generator_exports/wger-linux-x86_64.tar.gz | ||
# flatpak/scripts/flatpak_generator_exports/wger-linux-x86_64.sha256 | ||
|
||
# - name: Generate flathub manifest | ||
# run: | | ||
# cd flatpak/scripts | ||
# dart pub get | ||
# dart manifest_generator.dart --meta ../flatpak_meta.json --github | ||
# mkdir ../../flathub | ||
# cp flatpak_generator_exports/de.wger.flutter.json ../../flathub | ||
# cp flatpak_generator_exports/flathub.json ../../flathub | ||
# | ||
# - name: Push updated config to flathub repository | ||
# uses: cpina/github-action-push-to-another-repository@main | ||
# env: | ||
# SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }} | ||
# with: | ||
# source-directory: flathub | ||
# destination-github-username: wger-project | ||
# destination-repository-name: de.wger.flutter | ||
# user-email: [email protected] | ||
# target-branch: release-${{ env.VERSION }} | ||
# create-target-branch-if-needed: true | ||
# commit-message: Update to ${{ env.VERSION }} | ||
|
||
# Note: the original tag that triggered the workflow is in the form vX.Y.Z | ||
# but the pubspec.yaml is committed in the commit after that one. | ||
|