Skip to content

Update Games.lua

Update Games.lua #163

Workflow file for this run

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