gitea/runner-images:ubuntu-latest 러너 이미지에 Docker가 이미 포함. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
70 lines
1.9 KiB
YAML
70 lines
1.9 KiB
YAML
name: Build And Test
|
|
|
|
run-name: ${{ gitea.actor }} is runs ci pipeline
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
paths:
|
|
- 'version'
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
paths:
|
|
- 'version'
|
|
# paths-ignore:
|
|
# - LICENCE
|
|
# - 'docs/**'
|
|
# - 'helm/**'
|
|
|
|
jobs:
|
|
build-and-push:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout source code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Retrieve version # tag version
|
|
id: img-ver
|
|
run: echo "content=$(cat ./version | tr -d '\n')" >> $GITHUB_OUTPUT
|
|
|
|
- name: Set up Docker Buildx
|
|
# uses: https://github.com/docker/setup-buildx-action@v1
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
- name: Login to Registry
|
|
run: docker login -u ${{ secrets.DOCKER_ID }} -p ${{ secrets.DOCKER_PW }} https://harbor.icurfer.com
|
|
|
|
- name: build
|
|
run: docker build -t harbor.icurfer.com/msa-demo/msa-django-auth:${{ steps.img-ver.outputs.content }} .
|
|
|
|
- name: Push to Docker
|
|
run: docker push harbor.icurfer.com/msa-demo/msa-django-auth:${{ steps.img-ver.outputs.content }}
|
|
|
|
## pre cd
|
|
- name: Setup Kustomize
|
|
uses: yokawasa/action-setup-kube-tools@v0.9.2
|
|
with:
|
|
kustomize: "3.7.0"
|
|
|
|
- name: Checkout kustomize repository
|
|
uses: actions/checkout@v3
|
|
with:
|
|
repository: "dev/cd-msa-django-auth"
|
|
ref: main
|
|
token: ${{ secrets.ACTION_TOKEN }}
|
|
path: cd-msa-django-auth
|
|
|
|
- name: Update Kubernetes resources
|
|
run: |
|
|
cd cd-msa-django-auth/overlays/dev/
|
|
kustomize edit set image harbor.icurfer.com/msa-demo/msa-django-auth:${{ steps.img-ver.outputs.content }}
|
|
cat kustomization.yaml
|
|
|
|
## cd commit
|
|
- name: Commit files
|
|
run: |
|
|
cd cd-msa-django-auth
|
|
git config --global user.email "icurfer@gmail.com"
|
|
git config --global user.name "icurfer"
|
|
git commit -am "Update image tag"
|
|
git push -u origin main |