Skip to content

Commit

Permalink
Merge pull request #139 from SaintAngeLs/dev
Browse files Browse the repository at this point in the history
(#133) pre deployment merge and previous issues resolutions
  • Loading branch information
SaintAngeLs committed May 12, 2024
2 parents 0661ecc + b703a35 commit 513d128
Show file tree
Hide file tree
Showing 662 changed files with 22,312 additions and 606 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/azure_synchronisation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,13 @@ jobs:
AZURE_DEVOPS_PASSWORD: ${{ secrets.AZURE_DEVOPS_PASSWORD }}
run: |
# git remote add azure https://$AZURE_DEVOPS_USERNAME:$AZURE_DEVOPS_PASSWORD@dev.azure.com/SocialAppOIPproject/SocialApp_IO/_git/SocialApp_IO
git remote add azure https://$AZURE_DEVOPS_PAT@dev.azure.com/SocialAppOIPproject/SocialApp_IO/_git/SocialApp_IO
# Check if the remote already exists
if git remote get-url azure; then
echo "Remote 'azure' already exists. Updating URL if needed."
git remote set-url azure https://$AZURE_DEVOPS_PAT@dev.azure.com/SocialAppOIPproject/SocialApp_IO/_git/SocialApp_IO
else
git remote add azure https://$AZURE_DEVOPS_PAT@dev.azure.com/SocialAppOIPproject/SocialApp_IO/_git/SocialApp_IO
fi
- name: Push all branches to Azure DevOps
run: git push azure --all --force
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_microservices.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
build-and-test:
runs-on: ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
Expand Down
Loading

0 comments on commit 513d128

Please sign in to comment.