From 7478091ef7b44a6fd51daf57084a19a5120e8c82 Mon Sep 17 00:00:00 2001 From: Zeus Elderfield Date: Mon, 26 May 2025 22:08:52 +0800 Subject: [PATCH 01/17] feat(ci-test): added scp for deployment --- .github/workflows/deploy.yml | 44 ++++++++++++++++++++++++++++-------- 1 file changed, 35 insertions(+), 9 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ab58da0..3c6654d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - zd--update-cli jobs: build: @@ -11,7 +12,37 @@ jobs: name: Build and Run runs-on: ubuntu-latest steps: - - name: Build and Run Hermes + - name: Checkout Code + uses: actions/checkout@v4 + + - name: Install bun + uses: oven-sh/bun-install@v1 + + - name: Install Dependencies + run: bun install + + - name: Generate and Migrate Database + run: | + bun run db:generate + bun run db:migrate + bun run db:seed + + - name: Build Hermes + run: | + bun run build + + - name: Upload Build via SCP + uses: appleboy/scp-action@v0.1.7 + with: + host: ${{ secrets.DCISM_HOST }} + username: ${{ secrets.DCISM_USERNAME }} + password: ${{ secrets.DCISM_PASSWORD }} + port: ${{ secrets.DCISM_PORT }} + source: ["./dist", "sqlite.db", "server.log"] + target: "${{ secrets.DCISM_SUBDOMAIN }}" + overwrite: true + + - name: Run Hermes uses: appleboy/ssh-action@v1.2.0 with: host: ${{ secrets.DCISM_HOST }} @@ -20,11 +51,6 @@ jobs: port: ${{ secrets.DCISM_PORT }} script: | cd ${{ secrets.DCISM_SUBDOMAIN }} - git reset --hard && git clean -fd && git pull origin main - bun install - bun run db:generate - bun run db:migrate - bun pm2 stop hermes - bun run build - chmod +x ./dist/hermes - bun pm2 reload hermes + chmod +x ./hermes + bun pm2 stop hermes || true + bun pm2 reload hermes || bun pm2 start ./dist/hermes --name hermes -i 2 From 16b0df2b59aaab8da18a089bd7acb19b67099e7a Mon Sep 17 00:00:00 2001 From: Zeus Elderfield Date: Mon, 26 May 2025 22:14:28 +0800 Subject: [PATCH 02/17] fix(gh-actions): fixed typo --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3c6654d..0fc4f89 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,7 +4,7 @@ on: push: branches: - main - - zd--update-cli + - zd--update-ci jobs: build: From 96d81b0c1db2daeb457f2780f3e2f4ba26c32855 Mon Sep 17 00:00:00 2001 From: Zeus Elderfield Date: Mon, 26 May 2025 22:16:58 +0800 Subject: [PATCH 03/17] fix(ci-test): changed source format from array to string --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 0fc4f89..96421d2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -38,7 +38,7 @@ jobs: username: ${{ secrets.DCISM_USERNAME }} password: ${{ secrets.DCISM_PASSWORD }} port: ${{ secrets.DCISM_PORT }} - source: ["./dist", "sqlite.db", "server.log"] + source: "./dist, sqlite.db, server.log" target: "${{ secrets.DCISM_SUBDOMAIN }}" overwrite: true From 4aa0b9a385e769b1049ebbb06e773d527d88e6d5 Mon Sep 17 00:00:00 2001 From: Zeus Elderfield Date: Mon, 26 May 2025 22:19:31 +0800 Subject: [PATCH 04/17] fix(ci-test): changed use for installing bun --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 96421d2..e27084f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -16,7 +16,7 @@ jobs: uses: actions/checkout@v4 - name: Install bun - uses: oven-sh/bun-install@v1 + uses: oven-sh/bun@v1.2.14 - name: Install Dependencies run: bun install From 9114907dd3ee4870c484f49b3a6f09aab20482c5 Mon Sep 17 00:00:00 2001 From: Zeus Elderfield Date: Mon, 26 May 2025 22:20:53 +0800 Subject: [PATCH 05/17] fix(ci-test): changed use for installing bun --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e27084f..f0023ca 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -16,7 +16,7 @@ jobs: uses: actions/checkout@v4 - name: Install bun - uses: oven-sh/bun@v1.2.14 + uses: oven-sh/setup-bun@v2 - name: Install Dependencies run: bun install From c5122be677b699b15a002c6f8511cc40f7bbcd3a Mon Sep 17 00:00:00 2001 From: Zeus Elderfield Date: Mon, 26 May 2025 22:24:20 +0800 Subject: [PATCH 06/17] fix(ci-test): fixed path to hermes executable --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f0023ca..9f82fcc 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -51,6 +51,6 @@ jobs: port: ${{ secrets.DCISM_PORT }} script: | cd ${{ secrets.DCISM_SUBDOMAIN }} - chmod +x ./hermes + chmod +x ./dist/hermes bun pm2 stop hermes || true bun pm2 reload hermes || bun pm2 start ./dist/hermes --name hermes -i 2 From 028f50f200065b4cec969f70cafee7813b489462 Mon Sep 17 00:00:00 2001 From: Zeus Elderfield Date: Mon, 26 May 2025 22:39:26 +0800 Subject: [PATCH 07/17] test: added ls to log folder structure --- .github/workflows/deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9f82fcc..f9502c0 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -51,6 +51,7 @@ jobs: port: ${{ secrets.DCISM_PORT }} script: | cd ${{ secrets.DCISM_SUBDOMAIN }} + ls chmod +x ./dist/hermes bun pm2 stop hermes || true bun pm2 reload hermes || bun pm2 start ./dist/hermes --name hermes -i 2 From 887b210a6a97dd7b4286a8afe5d42019a705d143 Mon Sep 17 00:00:00 2001 From: Zeus Elderfield Date: Mon, 26 May 2025 22:44:00 +0800 Subject: [PATCH 08/17] test: view pm2 logs --- .github/workflows/deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f9502c0..3a847bd 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -55,3 +55,4 @@ jobs: chmod +x ./dist/hermes bun pm2 stop hermes || true bun pm2 reload hermes || bun pm2 start ./dist/hermes --name hermes -i 2 + bun pm2 logs hermes From 0a88faa7219dac1a900759ca7e27722d5a34fc1c Mon Sep 17 00:00:00 2001 From: Zeus Elderfield Date: Mon, 26 May 2025 22:58:09 +0800 Subject: [PATCH 09/17] test: view pm2 logs --- .github/workflows/deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3a847bd..7febd01 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -52,6 +52,7 @@ jobs: script: | cd ${{ secrets.DCISM_SUBDOMAIN }} ls + bun pm2 logs hermes || true chmod +x ./dist/hermes bun pm2 stop hermes || true bun pm2 reload hermes || bun pm2 start ./dist/hermes --name hermes -i 2 From 8f05337424aefd0d3513da6cafde0056c60c1df0 Mon Sep 17 00:00:00 2001 From: Zeus Elderfield Date: Mon, 26 May 2025 23:30:19 +0800 Subject: [PATCH 10/17] test: using temporary subdomain for testing --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7febd01..f45d7ea 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -35,11 +35,11 @@ jobs: uses: appleboy/scp-action@v0.1.7 with: host: ${{ secrets.DCISM_HOST }} - username: ${{ secrets.DCISM_USERNAME }} - password: ${{ secrets.DCISM_PASSWORD }} + username: ${{ secrets.DCISM_TEST_USERNAME }} + password: ${{ secrets.DCISM_TEST_PASSWORD }} port: ${{ secrets.DCISM_PORT }} source: "./dist, sqlite.db, server.log" - target: "${{ secrets.DCISM_SUBDOMAIN }}" + target: "${{ secrets.DCISM_TEST_SUBDOMAIN }}" overwrite: true - name: Run Hermes From f350e5c418375bacad9c674063e9fa24b67eafdb Mon Sep 17 00:00:00 2001 From: Zeus Elderfield Date: Tue, 27 May 2025 00:15:53 +0800 Subject: [PATCH 11/17] test: added temp branch to deploy_env --- .github/workflows/deploy.yml | 6 +++--- .github/workflows/deploy_env.yml | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f45d7ea..7febd01 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -35,11 +35,11 @@ jobs: uses: appleboy/scp-action@v0.1.7 with: host: ${{ secrets.DCISM_HOST }} - username: ${{ secrets.DCISM_TEST_USERNAME }} - password: ${{ secrets.DCISM_TEST_PASSWORD }} + username: ${{ secrets.DCISM_USERNAME }} + password: ${{ secrets.DCISM_PASSWORD }} port: ${{ secrets.DCISM_PORT }} source: "./dist, sqlite.db, server.log" - target: "${{ secrets.DCISM_TEST_SUBDOMAIN }}" + target: "${{ secrets.DCISM_SUBDOMAIN }}" overwrite: true - name: Run Hermes diff --git a/.github/workflows/deploy_env.yml b/.github/workflows/deploy_env.yml index 0d2f7cf..eef8137 100644 --- a/.github/workflows/deploy_env.yml +++ b/.github/workflows/deploy_env.yml @@ -5,6 +5,7 @@ on: push: branches: - main + - zd--update-ci jobs: # This job will automatically overwrite the .env file in the server From a17e8c43686bc45d553e18a97de5289c6033e802 Mon Sep 17 00:00:00 2001 From: Zeus Elderfield Date: Tue, 27 May 2025 00:29:02 +0800 Subject: [PATCH 12/17] test: use temporary subdomain --- .github/workflows/deploy.yml | 12 ++++++------ .github/workflows/deploy_env.yml | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7febd01..f418003 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -35,22 +35,22 @@ jobs: uses: appleboy/scp-action@v0.1.7 with: host: ${{ secrets.DCISM_HOST }} - username: ${{ secrets.DCISM_USERNAME }} - password: ${{ secrets.DCISM_PASSWORD }} + username: ${{ secrets.DCISM_TEST_USERNAME }} + password: ${{ secrets.DCISM_TEST_PASSWORD }} port: ${{ secrets.DCISM_PORT }} source: "./dist, sqlite.db, server.log" - target: "${{ secrets.DCISM_SUBDOMAIN }}" + target: "${{ secrets.DCISM_TEST_SUBDOMAIN }}" overwrite: true - name: Run Hermes uses: appleboy/ssh-action@v1.2.0 with: host: ${{ secrets.DCISM_HOST }} - username: ${{ secrets.DCISM_USERNAME }} - password: ${{ secrets.DCISM_PASSWORD }} + username: ${{ secrets.DCISM_TEST_USERNAME }} + password: ${{ secrets.DCISM_TEST_PASSWORD }} port: ${{ secrets.DCISM_PORT }} script: | - cd ${{ secrets.DCISM_SUBDOMAIN }} + cd ${{ secrets.DCISM_TEST_SUBDOMAIN }} ls bun pm2 logs hermes || true chmod +x ./dist/hermes diff --git a/.github/workflows/deploy_env.yml b/.github/workflows/deploy_env.yml index eef8137..b139970 100644 --- a/.github/workflows/deploy_env.yml +++ b/.github/workflows/deploy_env.yml @@ -25,19 +25,19 @@ jobs: uses: appleboy/scp-action@v0.1.7 with: host: ${{ secrets.DCISM_HOST }} - username: ${{ secrets.DCISM_USERNAME }} - password: ${{ secrets.DCISM_PASSWORD }} + username: ${{ secrets.DCISM_TEST_USERNAME }} + password: ${{ secrets.DCISM_TEST_PASSWORD }} port: ${{ secrets.DCISM_PORT }} source: ".env" - target: "${{ secrets.DCISM_SUBDOMAIN }}" + target: "${{ secrets.DCISM_TEST_SUBDOMAIN }}" - name: Update .htaccess uses: appleboy/ssh-action@v1.2.0 with: host: ${{ secrets.DCISM_HOST }} - username: ${{ secrets.DCISM_USERNAME }} - password: ${{ secrets.DCISM_PASSWORD }} + username: ${{ secrets.DCISM_TEST_USERNAME }} + password: ${{ secrets.DCISM_TEST_PASSWORD }} port: ${{ secrets.DCISM_PORT }} script: | - cd ${{ secrets.DCISM_SUBDOMAIN }} + cd ${{ secrets.DCISM_TEST_SUBDOMAIN }} sed -i "s/127.0.0.1:[0-9]\+/127.0.0.1:${{ secrets.SERVER_PORT }}/" .htaccess From 138d123b8a79acc10e5339dafea63eec31fb5b48 Mon Sep 17 00:00:00 2001 From: Zeus Elderfield Date: Tue, 27 May 2025 00:41:51 +0800 Subject: [PATCH 13/17] fix(ci-test): try fixing busy file --- .github/workflows/deploy.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f418003..ff159f0 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -31,6 +31,17 @@ jobs: run: | bun run build + - name: Run Hermes + uses: appleboy/ssh-action@v1.2.0 + with: + host: ${{ secrets.DCISM_HOST }} + username: ${{ secrets.DCISM_TEST_USERNAME }} + password: ${{ secrets.DCISM_TEST_PASSWORD }} + port: ${{ secrets.DCISM_PORT }} + script: | + cd ${{ secrets.DCISM_TEST_SUBDOMAIN }} + bun pm2 stop hermes || true + - name: Upload Build via SCP uses: appleboy/scp-action@v0.1.7 with: @@ -54,6 +65,4 @@ jobs: ls bun pm2 logs hermes || true chmod +x ./dist/hermes - bun pm2 stop hermes || true - bun pm2 reload hermes || bun pm2 start ./dist/hermes --name hermes -i 2 - bun pm2 logs hermes + bun pm2 reload hermes || bun pm2 start ./dist/hermes --name hermes -i 2 \ No newline at end of file From 733a03b498d7be7813b1299ed69945761f65dd75 Mon Sep 17 00:00:00 2001 From: Zeus Elderfield Date: Tue, 27 May 2025 00:48:02 +0800 Subject: [PATCH 14/17] fix(ci-test): changed back to original subdomain --- .github/workflows/deploy.yml | 22 ++++++++++------------ .github/workflows/deploy_env.yml | 12 ++++++------ 2 files changed, 16 insertions(+), 18 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ff159f0..09bfcbb 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -35,34 +35,32 @@ jobs: uses: appleboy/ssh-action@v1.2.0 with: host: ${{ secrets.DCISM_HOST }} - username: ${{ secrets.DCISM_TEST_USERNAME }} - password: ${{ secrets.DCISM_TEST_PASSWORD }} + username: ${{ secrets.DCISM_USERNAME }} + password: ${{ secrets.DCISM_PASSWORD }} port: ${{ secrets.DCISM_PORT }} script: | - cd ${{ secrets.DCISM_TEST_SUBDOMAIN }} + cd ${{ secrets.DCISM_SUBDOMAIN }} bun pm2 stop hermes || true - name: Upload Build via SCP uses: appleboy/scp-action@v0.1.7 with: host: ${{ secrets.DCISM_HOST }} - username: ${{ secrets.DCISM_TEST_USERNAME }} - password: ${{ secrets.DCISM_TEST_PASSWORD }} + username: ${{ secrets.DCISM_USERNAME }} + password: ${{ secrets.DCISM_PASSWORD }} port: ${{ secrets.DCISM_PORT }} source: "./dist, sqlite.db, server.log" - target: "${{ secrets.DCISM_TEST_SUBDOMAIN }}" + target: "${{ secrets.DCISM_SUBDOMAIN }}" overwrite: true - name: Run Hermes uses: appleboy/ssh-action@v1.2.0 with: host: ${{ secrets.DCISM_HOST }} - username: ${{ secrets.DCISM_TEST_USERNAME }} - password: ${{ secrets.DCISM_TEST_PASSWORD }} + username: ${{ secrets.DCISM_USERNAME }} + password: ${{ secrets.DCISM_PASSWORD }} port: ${{ secrets.DCISM_PORT }} script: | - cd ${{ secrets.DCISM_TEST_SUBDOMAIN }} - ls - bun pm2 logs hermes || true + cd ${{ secrets.DCISM_SUBDOMAIN }} chmod +x ./dist/hermes - bun pm2 reload hermes || bun pm2 start ./dist/hermes --name hermes -i 2 \ No newline at end of file + bun pm2 start ./dist/hermes --name hermes -i 2 \ No newline at end of file diff --git a/.github/workflows/deploy_env.yml b/.github/workflows/deploy_env.yml index b139970..eef8137 100644 --- a/.github/workflows/deploy_env.yml +++ b/.github/workflows/deploy_env.yml @@ -25,19 +25,19 @@ jobs: uses: appleboy/scp-action@v0.1.7 with: host: ${{ secrets.DCISM_HOST }} - username: ${{ secrets.DCISM_TEST_USERNAME }} - password: ${{ secrets.DCISM_TEST_PASSWORD }} + username: ${{ secrets.DCISM_USERNAME }} + password: ${{ secrets.DCISM_PASSWORD }} port: ${{ secrets.DCISM_PORT }} source: ".env" - target: "${{ secrets.DCISM_TEST_SUBDOMAIN }}" + target: "${{ secrets.DCISM_SUBDOMAIN }}" - name: Update .htaccess uses: appleboy/ssh-action@v1.2.0 with: host: ${{ secrets.DCISM_HOST }} - username: ${{ secrets.DCISM_TEST_USERNAME }} - password: ${{ secrets.DCISM_TEST_PASSWORD }} + username: ${{ secrets.DCISM_USERNAME }} + password: ${{ secrets.DCISM_PASSWORD }} port: ${{ secrets.DCISM_PORT }} script: | - cd ${{ secrets.DCISM_TEST_SUBDOMAIN }} + cd ${{ secrets.DCISM_SUBDOMAIN }} sed -i "s/127.0.0.1:[0-9]\+/127.0.0.1:${{ secrets.SERVER_PORT }}/" .htaccess From f4dc80790775e670c7b2c9ac0802d7de25dda597 Mon Sep 17 00:00:00 2001 From: Zeus Elderfield Date: Tue, 27 May 2025 00:52:09 +0800 Subject: [PATCH 15/17] fix(ci-test): removed temp branch from ci --- .github/workflows/deploy.yml | 5 ++--- .github/workflows/deploy_env.yml | 1 - 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 09bfcbb..f8919d6 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,7 +4,6 @@ on: push: branches: - main - - zd--update-ci jobs: build: @@ -31,7 +30,7 @@ jobs: run: | bun run build - - name: Run Hermes + - name: Stop Hermes uses: appleboy/ssh-action@v1.2.0 with: host: ${{ secrets.DCISM_HOST }} @@ -40,7 +39,7 @@ jobs: port: ${{ secrets.DCISM_PORT }} script: | cd ${{ secrets.DCISM_SUBDOMAIN }} - bun pm2 stop hermes || true + bun pm2 delete hermes - name: Upload Build via SCP uses: appleboy/scp-action@v0.1.7 diff --git a/.github/workflows/deploy_env.yml b/.github/workflows/deploy_env.yml index eef8137..0d2f7cf 100644 --- a/.github/workflows/deploy_env.yml +++ b/.github/workflows/deploy_env.yml @@ -5,7 +5,6 @@ on: push: branches: - main - - zd--update-ci jobs: # This job will automatically overwrite the .env file in the server From aeda8a3303c8d893313ac44ab8bdf61ec87ab78f Mon Sep 17 00:00:00 2001 From: elderfieldzeus Date: Tue, 27 May 2025 01:18:32 +0800 Subject: [PATCH 16/17] test: trying out pm2 stop and reload --- .github/workflows/deploy.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f8919d6..74e88ff 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - zd--update-ci jobs: build: @@ -39,7 +40,7 @@ jobs: port: ${{ secrets.DCISM_PORT }} script: | cd ${{ secrets.DCISM_SUBDOMAIN }} - bun pm2 delete hermes + bun pm2 stop hermes - name: Upload Build via SCP uses: appleboy/scp-action@v0.1.7 @@ -62,4 +63,4 @@ jobs: script: | cd ${{ secrets.DCISM_SUBDOMAIN }} chmod +x ./dist/hermes - bun pm2 start ./dist/hermes --name hermes -i 2 \ No newline at end of file + bun pm2 reload hermes \ No newline at end of file From 537f1fc57e394b6e2979da6134c402c068b2463e Mon Sep 17 00:00:00 2001 From: elderfieldzeus Date: Tue, 27 May 2025 01:22:08 +0800 Subject: [PATCH 17/17] fix(ci): removed temporary branch --- .github/workflows/deploy.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 74e88ff..9ae6f96 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,7 +4,6 @@ on: push: branches: - main - - zd--update-ci jobs: build: