From 9b27381383701def8822298b84229878e13c3526 Mon Sep 17 00:00:00 2001 From: Vadim <44135514+vodemn@users.noreply.github.com> Date: Tue, 8 Oct 2024 15:52:07 +0200 Subject: [PATCH] temp disable releases --- .github/workflows/create_release.yml | 88 ++++++++++++++-------------- 1 file changed, 43 insertions(+), 45 deletions(-) diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 934d1bc..bbeb97f 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -99,34 +99,34 @@ jobs: name: ${{ env.RELEASE_NOTES_ARTIFACT_NAME }} path: ${{ env.RELEASE_NOTES_PATH }} - - name: Commit changes - run: | - git config --local user.email "github-actions[bot]@users.noreply.github.com" - git config --local user.name "github-actions[bot]" - git add -A - git commit -m "Release v${{ inputs.version }}" + # - name: Commit changes + # run: | + # git config --local user.email "github-actions[bot]@users.noreply.github.com" + # git config --local user.name "github-actions[bot]" + # git add -A + # git commit -m "Release v${{ inputs.version }}" - - name: Push to main - uses: CasperWA/push-protected@v2 - with: - token: ${{ secrets.PUSH_TO_MAIN_TOKEN }} - branch: ${{ github.ref_name }} - unprotect_reviews: true + # - name: Push to main + # uses: CasperWA/push-protected@v2 + # with: + # token: ${{ secrets.PUSH_TO_MAIN_TOKEN }} + # branch: ${{ github.ref_name }} + # unprotect_reviews: true - - name: Download apk - uses: actions/download-artifact@v3 - with: - name: m3_lightmeter_apk + # - name: Download apk + # uses: actions/download-artifact@v3 + # with: + # name: m3_lightmeter_apk - - name: Rename apk - run: mv app-prod-release.apk m3_lightmeter.apk + # - name: Rename apk + # run: mv app-prod-release.apk m3_lightmeter.apk - - uses: ncipollo/release-action@v1.12.0 - with: - artifacts: "m3_lightmeter.apk" - skipIfReleaseExists: true - tag: "v${{ github.event.inputs.version }}" - bodyFile: "${{ env.RELEASE_NOTES_PATH }}/${{ env.RELEASE_NOTES_FILE }}" + # - uses: ncipollo/release-action@v1.12.0 + # with: + # artifacts: "m3_lightmeter.apk" + # skipIfReleaseExists: true + # tag: "v${{ github.event.inputs.version }}" + # bodyFile: "${{ env.RELEASE_NOTES_PATH }}/${{ env.RELEASE_NOTES_FILE }}" create-google-play-release: name: Create Google Play release @@ -160,24 +160,24 @@ jobs: # https://unix.stackexchange.com/questions/13466/can-grep-output-only-specified-groupings-that-match' # https://stackoverflow.com/questions/74353311/github-workflow-unable-to-process-file-command-env-successfully - - name: Create Google Play release name - id: release-name - run: | - RELEASE_NAME=$(echo "$(cat pubspec.yaml)" | sed -n -r "s/^version:\s{1}(.*)[+](.*)$/700\2 (\1)/p") - echo "release_name=$RELEASE_NAME" >> $GITHUB_ENV + # - name: Create Google Play release name + # id: release-name + # run: | + # RELEASE_NAME=$(echo "$(cat pubspec.yaml)" | sed -n -r "s/^version:\s{1}(.*)[+](.*)$/700\2 (\1)/p") + # echo "release_name=$RELEASE_NAME" >> $GITHUB_ENV - - name: Create Google Play release - id: create-google-play-release-step - uses: r0adkll/upload-google-play@v1.1.1 - with: - serviceAccountJsonPlainText: ${{ secrets.GH_ACTIONS_SERVICE_ACCOUNT_JSON }} - packageName: com.vodemn.lightmeter - releaseFiles: app-prod-release.aab - releaseName: ${{ env.release_name }} - track: production - status: completed - debugSymbols: merged_native_libs.zip - whatsNewDirectory: whatsnew + # - name: Create Google Play release + # id: create-google-play-release-step + # uses: r0adkll/upload-google-play@v1.1.1 + # with: + # serviceAccountJsonPlainText: ${{ secrets.GH_ACTIONS_SERVICE_ACCOUNT_JSON }} + # packageName: com.vodemn.lightmeter + # releaseFiles: app-prod-release.aab + # releaseName: ${{ env.release_name }} + # track: production + # status: completed + # debugSymbols: merged_native_libs.zip + # whatsNewDirectory: whatsnew upload-to-app-store: name: Upload to App Store @@ -193,8 +193,8 @@ jobs: with: name: m3_lightmeter_ipa - - name: Upload app to TestFlight - run: xcrun altool --upload-app -f lightmeter.ipa -t ios -u ${{ secrets.APP_STORE_USERNAME }} -p ${{ secrets.APP_STORE_PASSWORD }} + # - name: Upload app to TestFlight + # run: xcrun altool --upload-app -f lightmeter.ipa -t ios -u ${{ secrets.APP_STORE_USERNAME }} -p ${{ secrets.APP_STORE_PASSWORD }} cleanup: name: Cleanup @@ -208,7 +208,5 @@ jobs: with: failOnError: false name: | - m3_lightmeter_apk m3_lightmeter_appbundle m3_lightmeter_ipa - ${{ env.RELEASE_NOTES_ARTIFACT_NAME }}