various changes
Some checks failed
🏗️ ✨ Build Workflow / 🖼️ 🔨 Build Frontend (push) Successful in 6m36s
🏗️ ✨ Build Workflow / 🖥️ 🔨 Build Backend (push) Successful in 7m45s
🏗️ ✨ Build Workflow / 🚀 ✨ Deploy Application (push) Failing after 52s
🧪 ✨ Unit Tests Workflow / 🧪 📜 JavaScript Tests (push) Successful in 3m14s
🧪 ✨ Unit Tests Workflow / 🔍 🐹 Go Tests (push) Successful in 5m22s

This commit is contained in:
2025-05-16 09:18:44 -04:00
parent 7c02aa7148
commit 9dce6b8930

View File

@@ -127,16 +127,22 @@ jobs:
run: | run: |
echo "## Do not edit this file directly. It is auto-generated by the script." > argocd/deployment/deployment.yml echo "## Do not edit this file directly. It is auto-generated by the script." > argocd/deployment/deployment.yml
sed "s|__TAG__|${{ gitea.ref_name }}|g" argocd/template/deployment.yml >> argocd/deployment/deployment.yml sed "s|__TAG__|${{ gitea.ref_name }}|g" argocd/template/deployment.yml >> argocd/deployment/deployment.yml
#
- name: 💾 ✅ Commit Updated Manifest # - name: 💾 ✅ Commit Updated Manifest
uses: EndBug/add-and-commit@v9 # uses: EndBug/add-and-commit@v9
with: # with:
new_branch: release/${{ gitea.ref_name }}-deploy # new_branch: release/${{ gitea.ref_name }}-deploy
add: argocd/deployment/deployment.yml # add: argocd/deployment/deployment.yml
author_name: "GitHub Action 🤖" # author_name: "GitHub Action 🤖"
author_email: gitia@siteworxpro.com # author_email: gitia@siteworxpro.com
message: "📝🔄 Update deployment manifest with new image tags" # message: "📝 🔄 Update deployment manifest with new image tags"
- name: 🚀 ✨ Create Pull Request - name: 🚀 ✨ Create Pull Request
id: cpr id: cpr
uses: peter-evans/create-pull-request@v7 uses: peter-evans/create-pull-request@v7
with:
add-paths: argocd/deployment/deployment.yml
title: "🚀 ✨ Release ${GITHUB_REF_NAME} - Deploy"
branch: release/${{ gitea.ref_name }}-deploy
committer: "Gitea Action 🤖 <gitia@siteworxpro.com>"
body: "📝 🔄 Update deployment manifest with new image tags for release ${GITHUB_REF_NAME}"