From fb1fb52f5ab71bed4ee264a9173f279e83635ea0 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Sun, 27 Apr 2025 16:30:34 -0300 Subject: [PATCH] refactor(gb-infra): Rename CI/CD workflow to GBCI and adjust branch configurations; add temporary SSL verification disable step --- .forgejo/workflows/node.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/node.yaml b/.forgejo/workflows/node.yaml index 57423e4..b70d3bb 100644 --- a/.forgejo/workflows/node.yaml +++ b/.forgejo/workflows/node.yaml @@ -1,16 +1,19 @@ -name: gbserver Rust CI/CD +name: GBCI on: push: - branches: ["main"] + branches: [ "main" ] pull_request: - branches: ["main"] + branches: [ "main" ] jobs: - build-and-deploy: + build: runs-on: gbo steps: + - name: Disable SSL verification (temporary) + run: git config --global http.sslVerify false + - uses: actions/checkout@v4 - name: Install Rust