ci: switch to gitea
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
name: Build container
|
name: Build container
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
branches: ["main"]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: ["main"]
|
branches: ["main"]
|
||||||
schedule:
|
schedule:
|
||||||
@@ -8,7 +9,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
base-build:
|
base-build:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: job-latest
|
||||||
steps:
|
steps:
|
||||||
- &clone_repo
|
- &clone_repo
|
||||||
name: Clone repo
|
name: Clone repo
|
||||||
@@ -20,19 +21,19 @@ jobs:
|
|||||||
name: Login to Registry
|
name: Login to Registry
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: git.plabble.org
|
||||||
username: ${{ github.repository_owner }}
|
username: ${{ secrets.REGISTRY_USERNAME }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||||
- name: Build and push base container
|
- name: Build and push base container
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: ./containers/base
|
context: ./containers/base
|
||||||
file: ./containers/base/Containerfile
|
file: ./containers/base/Containerfile
|
||||||
push: true
|
push: true
|
||||||
tags: ghcr.io/${{ github.repository_owner }}/base:latest
|
tags: git.plabble.org/job79/base:${{ github.ref_name }}
|
||||||
|
|
||||||
go-build:
|
go-build:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: job-latest
|
||||||
needs: base-build
|
needs: base-build
|
||||||
steps:
|
steps:
|
||||||
- *clone_repo
|
- *clone_repo
|
||||||
@@ -44,10 +45,10 @@ jobs:
|
|||||||
context: ./containers/go
|
context: ./containers/go
|
||||||
file: ./containers/go/Containerfile
|
file: ./containers/go/Containerfile
|
||||||
push: true
|
push: true
|
||||||
tags: ghcr.io/${{ github.repository_owner }}/go:latest
|
tags: git.plabble.org/job79/go:${{ github.ref_name }}
|
||||||
|
|
||||||
infra-build:
|
infra-build:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: job-latest
|
||||||
needs: base-build
|
needs: base-build
|
||||||
steps:
|
steps:
|
||||||
- *clone_repo
|
- *clone_repo
|
||||||
@@ -59,10 +60,10 @@ jobs:
|
|||||||
context: ./containers/infra
|
context: ./containers/infra
|
||||||
file: ./containers/infra/Containerfile
|
file: ./containers/infra/Containerfile
|
||||||
push: true
|
push: true
|
||||||
tags: ghcr.io/${{ github.repository_owner }}/infra:latest
|
tags: git.plabble.org/job79/infra:${{ github.ref_name }}
|
||||||
|
|
||||||
kali-build:
|
kali-build:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: job-latest
|
||||||
needs: base-build
|
needs: base-build
|
||||||
steps:
|
steps:
|
||||||
- *clone_repo
|
- *clone_repo
|
||||||
@@ -74,4 +75,4 @@ jobs:
|
|||||||
context: ./containers/kali
|
context: ./containers/kali
|
||||||
file: ./containers/kali/Containerfile
|
file: ./containers/kali/Containerfile
|
||||||
push: true
|
push: true
|
||||||
tags: ghcr.io/${{ github.repository_owner }}/kali:latest
|
tags: git.plabble.org/job79/kali:${{ github.ref_name }}
|
||||||
Reference in New Issue
Block a user