Files
tamagotchi-service/.gitea/workflows/deploy.yaml
T
khalil 8f00676623
CI/CD Pipeline / test (push) Successful in 11s
CI/CD Pipeline / build-push-deploy (push) Failing after 7s
ci: provide CR_PAT to actions/checkout for git push
2026-07-04 18:37:08 +00:00

68 lines
2.4 KiB
YAML

name: CI/CD Pipeline
on:
push:
branches:
- main
paths-ignore:
- 'api-deployment.yaml'
- 'frontend-deployment.yaml'
env:
GIT_SSL_NO_VERIFY: "true"
NODE_TLS_REJECT_UNAUTHORIZED: "0"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies and test API
working-directory: ./api
run: npm install && node -c server.js
build-push-deploy:
runs-on: ubuntu-latest
needs: test
permissions:
packages: write
contents: write
env:
DOCKER_HOST: tcp://localhost:2375
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.CR_PAT }}
- name: Log in to Gitea Container Registry
run: echo "${{ secrets.CR_PAT }}" | docker login https://git.khalilaliouich.com -u ${{ github.actor }} --password-stdin
- name: Build and Push API
run: |
docker build --network=host -t git.khalilaliouich.com/${{ github.repository_owner }}/tamagotchi-api:${{ github.sha }} ./api
docker push git.khalilaliouich.com/${{ github.repository_owner }}/tamagotchi-api:${{ github.sha }}
- name: Build and Push Frontend
run: |
docker build --network=host -t git.khalilaliouich.com/${{ github.repository_owner }}/tamagotchi-frontend:${{ github.sha }} ./frontend
docker push git.khalilaliouich.com/${{ github.repository_owner }}/tamagotchi-frontend:${{ github.sha }}
- name: Update Kubernetes Manifests
run: |
sed -i "s|image: .*tamagotchi-api:.*|image: git.khalilaliouich.com/${{ github.repository_owner }}/tamagotchi-api:${{ github.sha }}|g" api-deployment.yaml
sed -i "s|image: .*tamagotchi-frontend:.*|image: git.khalilaliouich.com/${{ github.repository_owner }}/tamagotchi-frontend:${{ github.sha }}|g" frontend-deployment.yaml
- name: Commit and Push changes
run: |
git config --global user.name "gitea-actions[bot]"
git config --global user.email "gitea-actions@gitea.local"
git add api-deployment.yaml frontend-deployment.yaml
git commit -m "chore: deploy version ${{ github.sha }} [skip ci]" || echo "No changes to commit"
git push origin main