ci: provide CR_PAT to actions/checkout for git push
CI/CD Pipeline / test (push) Successful in 11s
CI/CD Pipeline / build-push-deploy (push) Failing after 7s

This commit is contained in:
2026-07-04 18:37:08 +00:00
parent 1a0b7e4429
commit 8f00676623
+4 -4
View File
@@ -38,19 +38,20 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
token: ${{ secrets.CR_PAT }}
- name: Log in to Gitea Container Registry - name: Log in to Gitea Container Registry
run: echo "${{ secrets.CR_PAT }}" | docker login https://git.khalilaliouich.com -u ${{ github.actor }} --password-stdin || echo "${{ secrets.CR_PAT }}" | docker login https://git.khalilaliouich.com -u ${{ github.actor }} --password-stdin run: echo "${{ secrets.CR_PAT }}" | docker login https://git.khalilaliouich.com -u ${{ github.actor }} --password-stdin
- name: Build and Push API - name: Build and Push API
run: | run: |
docker build --network=host -t git.khalilaliouich.com/${{ github.repository_owner }}/tamagotchi-api:${{ github.sha }} ./api 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 }} || (docker tag git.khalilaliouich.com/${{ github.repository_owner }}/tamagotchi-api:${{ github.sha }} git.khalilaliouich.com/${{ github.repository_owner }}/tamagotchi-api:${{ github.sha }} && docker push git.khalilaliouich.com/${{ github.repository_owner }}/tamagotchi-api:${{ github.sha }}) docker push git.khalilaliouich.com/${{ github.repository_owner }}/tamagotchi-api:${{ github.sha }}
- name: Build and Push Frontend - name: Build and Push Frontend
run: | run: |
docker build --network=host -t git.khalilaliouich.com/${{ github.repository_owner }}/tamagotchi-frontend:${{ github.sha }} ./frontend 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 }} || (docker tag git.khalilaliouich.com/${{ github.repository_owner }}/tamagotchi-frontend:${{ github.sha }} git.khalilaliouich.com/${{ github.repository_owner }}/tamagotchi-frontend:${{ github.sha }} && docker push git.khalilaliouich.com/${{ github.repository_owner }}/tamagotchi-frontend:${{ github.sha }}) docker push git.khalilaliouich.com/${{ github.repository_owner }}/tamagotchi-frontend:${{ github.sha }}
- name: Update Kubernetes Manifests - name: Update Kubernetes Manifests
run: | run: |
@@ -61,7 +62,6 @@ jobs:
run: | run: |
git config --global user.name "gitea-actions[bot]" git config --global user.name "gitea-actions[bot]"
git config --global user.email "gitea-actions@gitea.local" git config --global user.email "gitea-actions@gitea.local"
git remote set-url origin http://${{ github.actor }}:${{ secrets.CR_PAT }}@git.khalilaliouich.com/${{ github.repository }}
git add api-deployment.yaml frontend-deployment.yaml git add api-deployment.yaml frontend-deployment.yaml
git commit -m "chore: deploy version ${{ github.sha }} [skip ci]" || echo "No changes to commit" git commit -m "chore: deploy version ${{ github.sha }} [skip ci]" || echo "No changes to commit"
git push origin main git push origin main