Update Games.lua #159
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Sync GitHub to Azure DevOps | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout GitHub Repository | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Git | |
| run: | | |
| git config --global user.name "Muhammad H" | |
| git config --global user.email "thing@ub.com" | |
| - name: Sync to Azure DevOps | |
| env: | |
| AZ_PAT: ${{ secrets.AZ_PAT }} | |
| run: | | |
| git remote add azure https://mhuda25@dev.azure.com/mhuda25/UBHub/_git/UBLoader | |
| git config --global http.https://dev.azure.com/.extraheader "AUTHORIZATION: bearer $AZ_PAT" | |
| git push azure main --force |