Created
October 16, 2021 11:05
-
-
Save mahmoudalaa97/e9e7048da9fc7b1c836a028bc5f684d3 to your computer and use it in GitHub Desktop.
Revisions
-
devhammed revised this gist
Sep 10, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -10,7 +10,7 @@ jobs: runs-on: macos-latest steps: - name: Export Release Timestamp run: echo "APP_VERSION=v$(date +'%Y.%m.%d.%H.%M.%S')" >> $GITHUB_ENV - name: Checkout repository uses: actions/checkout@v1 - name: Set up Java -
devhammed revised this gist
Jun 23, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -10,7 +10,7 @@ jobs: runs-on: macos-latest steps: - name: Export Release Timestamp run: echo "APP_VERSION=v$(date +'%Y.%m.%d.%H.%m.%S')" >> $GITHUB_ENV - name: Checkout repository uses: actions/checkout@v1 - name: Set up Java -
devhammed revised this gist
Jun 23, 2021 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -16,12 +16,12 @@ jobs: - name: Set up Java uses: actions/setup-java@v2 with: java-version: '15' distribution: 'adopt' - name: Set up Flutter uses: subosito/flutter-action@v1 with: channel: 'stable' - name: Install pub Dependencies run: flutter pub get - name: Run Tests @@ -48,4 +48,4 @@ jobs: tag: ${{ env.APP_VERSION }} name: ${{ env.APP_VERSION }} token: ${{ secrets.GITHUB_TOKEN }} artifacts: 'build/app/outputs/apk/release/*.apk,build/ios/iphoneos/app.ipa,build/web/web-app.zip' -
devhammed revised this gist
Jun 23, 2021 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -14,9 +14,10 @@ jobs: - name: Checkout repository uses: actions/checkout@v1 - name: Set up Java uses: actions/setup-java@v2 with: java-version: 15 distribution: adopt - name: Set up Flutter uses: subosito/flutter-action@v1 with: -
devhammed revised this gist
Nov 22, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -10,7 +10,7 @@ jobs: runs-on: macos-latest steps: - name: Export Release Timestamp run: echo "APP_VERSION=release_$(date +'%Y-%m-%d_%H-%m-%S')" >> $GITHUB_ENV - name: Checkout repository uses: actions/checkout@v1 - name: Set up Java -
devhammed revised this gist
Aug 3, 2020 . 1 changed file with 6 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -36,10 +36,15 @@ jobs: ln -s ../Runner.app cd .. zip -r app.ipa Payload - name: Build Web App run: | flutter build web cd build/web zip -r web-app.zip . - name: Release Apps uses: ncipollo/release-action@v1 with: tag: ${{ env.APP_VERSION }} name: ${{ env.APP_VERSION }} token: ${{ secrets.GITHUB_TOKEN }} artifacts: "build/app/outputs/apk/release/*.apk,build/ios/iphoneos/app.ipa,build/web/web-app.zip" -
devhammed revised this gist
Mar 6, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -42,4 +42,4 @@ jobs: tag: ${{ env.APP_VERSION }} name: ${{ env.APP_VERSION }} token: ${{ secrets.GITHUB_TOKEN }} artifacts: "build/app/outputs/apk/release/*.apk,build/ios/iphoneos/app.ipa" -
devhammed revised this gist
Mar 6, 2020 . 1 changed file with 5 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -9,13 +9,15 @@ jobs: name: Build Apps runs-on: macos-latest steps: - name: Export Release Timestamp run: echo "::set-env name=APP_VERSION::release_$(date +'%Y-%m-%d_%H-%m-%S')" - name: Checkout repository uses: actions/checkout@v1 - name: Set up Java uses: actions/setup-java@v1 with: java-version: "12.x" - name: Set up Flutter uses: subosito/flutter-action@v1 with: channel: "stable" @@ -34,12 +36,10 @@ jobs: ln -s ../Runner.app cd .. zip -r app.ipa Payload - name: Release Apps uses: ncipollo/release-action@v1 with: tag: ${{ env.APP_VERSION }} name: ${{ env.APP_VERSION }} token: ${{ secrets.GITHUB_TOKEN }} artifacts: "build/app/outputs/apk/release/*.apk,build/ios/iphoneos/app.ipa" -
devhammed revised this gist
Mar 6, 2020 . 1 changed file with 6 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -21,6 +21,8 @@ jobs: channel: "stable" - name: Install pub Dependencies run: flutter pub get - name: Run Tests run: flutter test - name: Build Android App run: flutter build apk --split-per-abi - name: Build iOS App @@ -32,10 +34,12 @@ jobs: ln -s ../Runner.app cd .. zip -r app.ipa Payload - name: Export Release Timestamp run: echo "::set-env name=APP_VERSION::release_$(date +'%Y-%m-%d_%H-%m-%S')" - name: Release Apps uses: ncipollo/release-action@v1 with: tag: ${{ env.APP_VERSION }} token: ${{ secrets.GITHUB_TOKEN }} name: Release ${{ env.APP_VERSION }} artifacts: "build/app/outputs/apk/release/*.apk,build/ios/iphoneos/app.ipa" -
devhammed created this gist
Mar 6, 2020 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,41 @@ on: push: branches: - master name: Build and Release Apps jobs: build: name: Build Apps runs-on: macos-latest steps: - name: Checkout repository uses: actions/checkout@v1 - name: Setup Java uses: actions/setup-java@v1 with: java-version: "12.x" - name: Setup Flutter uses: subosito/flutter-action@v1 with: channel: "stable" - name: Install pub Dependencies run: flutter pub get - name: Build Android App run: flutter build apk --split-per-abi - name: Build iOS App run: | flutter build ios --no-codesign cd build/ios/iphoneos mkdir Payload cd Payload ln -s ../Runner.app cd .. zip -r app.ipa Payload - name: Release Apps uses: ncipollo/release-action@v1 with: tag: ${{ github.sha }} token: ${{ secrets.GITHUB_TOKEN }} name: Release ${{ github.sha }} artifacts: "build/app/outputs/apk/release/*.apk,build/ios/iphoneos/app.ipa"