diff --git a/.gitea/workflows/build_artifacts.yml b/.gitea/workflows/build_artifacts.yml index 2a14cc7..c8c9f78 100644 --- a/.gitea/workflows/build_artifacts.yml +++ b/.gitea/workflows/build_artifacts.yml @@ -24,6 +24,11 @@ jobs: timeout-minutes: 45 if: github.event.inputs.platform == 'windows' || github.event.inputs.platform == 'all' steps: + - name: Setup SSH config for Gitea + run: | + mkdir -p ~/.ssh + echo -e "Host gitea\n HostName 100.79.174.108\n Port 222\n StrictHostKeyChecking no" > ~/.ssh/config + - name: Checkout repository uses: actions/checkout@v4 with: @@ -61,6 +66,11 @@ jobs: timeout-minutes: 45 if: github.event.inputs.platform == 'linux' || github.event.inputs.platform == 'all' steps: + - name: Setup SSH config for Gitea + run: | + mkdir -p ~/.ssh + echo -e "Host gitea\n HostName 100.79.174.108\n Port 222\n StrictHostKeyChecking no" > ~/.ssh/config + - name: Checkout repository uses: actions/checkout@v4 with: @@ -98,6 +108,11 @@ jobs: timeout-minutes: 60 if: github.event.inputs.platform == 'android' || github.event.inputs.platform == 'all' steps: + - name: Setup SSH config for Gitea + run: | + mkdir -p ~/.ssh + echo -e "Host gitea\n HostName 100.79.174.108\n Port 222\n StrictHostKeyChecking no" > ~/.ssh/config + - name: Checkout repository uses: actions/checkout@v4 with: diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 8b3aab2..0eebebb 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -12,6 +12,11 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 45 steps: + - name: Setup SSH config for Gitea + run: | + mkdir -p ~/.ssh + echo -e "Host gitea\n HostName 100.79.174.108\n Port 222\n StrictHostKeyChecking no" > ~/.ssh/config + - name: Checkout repository uses: actions/checkout@v4 with: @@ -48,6 +53,11 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 45 steps: + - name: Setup SSH config for Gitea + run: | + mkdir -p ~/.ssh + echo -e "Host gitea\n HostName 100.79.174.108\n Port 222\n StrictHostKeyChecking no" > ~/.ssh/config + - name: Checkout repository uses: actions/checkout@v4 with: @@ -84,6 +94,11 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 60 steps: + - name: Setup SSH config for Gitea + run: | + mkdir -p ~/.ssh + echo -e "Host gitea\n HostName 100.79.174.108\n Port 222\n StrictHostKeyChecking no" > ~/.ssh/config + - name: Checkout repository uses: actions/checkout@v4 with: diff --git a/.gitea/workflows/deploy_patch.yml b/.gitea/workflows/deploy_patch.yml index 00ffe6d..4f8346e 100644 --- a/.gitea/workflows/deploy_patch.yml +++ b/.gitea/workflows/deploy_patch.yml @@ -18,6 +18,11 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 45 steps: + - name: Setup SSH config for Gitea + run: | + mkdir -p ~/.ssh + echo -e "Host gitea\n HostName 100.79.174.108\n Port 222\n StrictHostKeyChecking no" > ~/.ssh/config + - name: Checkout repository uses: actions/checkout@v4 with: diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 1c2e100..1c4dee2 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -13,6 +13,11 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 30 steps: + - name: Setup SSH config for Gitea + run: | + mkdir -p ~/.ssh + echo -e "Host gitea\n HostName 100.79.174.108\n Port 222\n StrictHostKeyChecking no" > ~/.ssh/config + - name: Checkout repository uses: actions/checkout@v4 with: @@ -40,6 +45,11 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 45 steps: + - name: Setup SSH config for Gitea + run: | + mkdir -p ~/.ssh + echo -e "Host gitea\n HostName 100.79.174.108\n Port 222\n StrictHostKeyChecking no" > ~/.ssh/config + - name: Checkout repository uses: actions/checkout@v4 with: @@ -79,6 +89,11 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: + - name: Setup SSH config for Gitea + run: | + mkdir -p ~/.ssh + echo -e "Host gitea\n HostName 100.79.174.108\n Port 222\n StrictHostKeyChecking no" > ~/.ssh/config + - name: Checkout repository uses: actions/checkout@v4 with: @@ -101,6 +116,11 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 15 steps: + - name: Setup SSH config for Gitea + run: | + mkdir -p ~/.ssh + echo -e "Host gitea\n HostName 100.79.174.108\n Port 222\n StrictHostKeyChecking no" > ~/.ssh/config + - name: Checkout repository uses: actions/checkout@v4 with: