ci) add gitea actions and refresh readme #1

Merged
shaun merged 18 commits from ci/gitea-actions-readme into main 2026-02-21 04:33:49 +00:00
2 changed files with 20 additions and 8 deletions
Showing only changes of commit 19a62fce8d - Show all commits

View File

@@ -15,10 +15,16 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 env:
with: REPO_URL: https://cloud.campbellwireless.net/git/${{ github.repository }}.git
github-server-url: https://cloud.campbellwireless.net/git run: |
fetch-depth: 0 set -eux
git init .
git remote add origin "$REPO_URL"
auth="$(printf '%s' '${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}' | base64 | tr -d '\n')"
git config --local http.https://cloud.campbellwireless.net/.extraheader "AUTHORIZATION: basic $auth"
git fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/*
git checkout --detach "${{ github.sha }}"
- name: Setup Docker Buildx - name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3

View File

@@ -9,10 +9,16 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 env:
with: REPO_URL: https://cloud.campbellwireless.net/git/${{ github.repository }}.git
github-server-url: https://cloud.campbellwireless.net/git run: |
fetch-depth: 0 set -eux
git init .
git remote add origin "$REPO_URL"
auth="$(printf '%s' '${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}' | base64 | tr -d '\n')"
git config --local http.https://cloud.campbellwireless.net/.extraheader "AUTHORIZATION: basic $auth"
git fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/*
git checkout --detach "${{ github.sha }}"
- name: Setup Bun - name: Setup Bun
uses: oven-sh/setup-bun@v2 uses: oven-sh/setup-bun@v2