diff --git a/.github/workflows/ci.yaml b/.gitea/workflows/ci.yaml similarity index 75% rename from .github/workflows/ci.yaml rename to .gitea/workflows/ci.yaml index cdced93..1acea00 100644 --- a/.github/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -1,6 +1,7 @@ name: Build container on: push: + branches: ["main"] pull_request: branches: ["main"] schedule: @@ -8,7 +9,7 @@ on: jobs: base-build: - runs-on: ubuntu-24.04 + runs-on: job-latest steps: - &clone_repo name: Clone repo @@ -20,19 +21,19 @@ jobs: name: Login to Registry uses: docker/login-action@v3 with: - registry: ghcr.io - username: ${{ github.repository_owner }} - password: ${{ secrets.GITHUB_TOKEN }} + registry: git.plabble.org + username: ${{ secrets.REGISTRY_USERNAME }} + password: ${{ secrets.REGISTRY_TOKEN }} - name: Build and push base container uses: docker/build-push-action@v5 with: context: ./containers/base file: ./containers/base/Containerfile push: true - tags: ghcr.io/${{ github.repository_owner }}/base:latest + tags: git.plabble.org/job79/base:${{ github.ref_name }} go-build: - runs-on: ubuntu-24.04 + runs-on: job-latest needs: base-build steps: - *clone_repo @@ -44,10 +45,10 @@ jobs: context: ./containers/go file: ./containers/go/Containerfile push: true - tags: ghcr.io/${{ github.repository_owner }}/go:latest + tags: git.plabble.org/job79/go:${{ github.ref_name }} infra-build: - runs-on: ubuntu-24.04 + runs-on: job-latest needs: base-build steps: - *clone_repo @@ -59,10 +60,10 @@ jobs: context: ./containers/infra file: ./containers/infra/Containerfile push: true - tags: ghcr.io/${{ github.repository_owner }}/infra:latest + tags: git.plabble.org/job79/infra:${{ github.ref_name }} kali-build: - runs-on: ubuntu-24.04 + runs-on: job-latest needs: base-build steps: - *clone_repo @@ -74,4 +75,4 @@ jobs: context: ./containers/kali file: ./containers/kali/Containerfile push: true - tags: ghcr.io/${{ github.repository_owner }}/kali:latest + tags: git.plabble.org/job79/kali:${{ github.ref_name }}