From 853704d92b8f68dddc0f81a2761f3ee715961cec Mon Sep 17 00:00:00 2001 From: almightyhak <134626626+almightyhak@users.noreply.github.com> Date: Tue, 6 Aug 2024 00:38:53 +0700 Subject: [PATCH] Update build_push.yml Update VidSrcExtractor.kt Updated encryption and decryption keys Add files via upload Update build_push.yml Update build_push.yml --- .github/workflows/build_push.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/build_push.yml b/.github/workflows/build_push.yml index abcdb4d7..ecfccbf0 100644 --- a/.github/workflows/build_push.yml +++ b/.github/workflows/build_push.yml @@ -40,6 +40,20 @@ jobs: files_separator: " " safe_output: false + - name: Import GPG key + uses: crazy-max/ghaction-import-gpg@v6 # v6.1.0 + with: + gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} + passphrase: ${{ secrets.GPG_PASSPHRASE }} + git_user_signingkey: true + git_commit_gpgsign: true + + # This step is going to commit, but this will not trigger another workflow. + - name: Bump extensions that uses a modified lib + if: steps.modified-libs.outputs.any_changed == 'true' + run: | + ./.github/scripts/bump-versions.py ${{ steps.modified-libs.outputs.all_changed_files }} + # This step is going to commit, but this will not trigger another workflow. - name: Bump extensions that uses a modified lib if: steps.modified-libs.outputs.any_changed == 'true'