Skip to content

Add static linking for custom ops in aimet-onnx #53

Add static linking for custom ops in aimet-onnx

Add static linking for custom ops in aimet-onnx #53

Workflow file for this run

name: Forward AIMET commits to public repo
on:
push:
branches:
- develop
jobs:
repo-sync:
if: github.server_url != 'https://github.com'
runs-on: ubuntu-latest
env:
INTERNAL_REPO_DIR: "aimet-repo"
INTERNAL_SRC_BRANCH: "develop"
PUBLIC_DST_BRANCH: "develop"
steps:
- name: Checkout internal repo
uses: actions/checkout@v4
with:
ref: ${{ env.INTERNAL_SRC_BRANCH }}
path: ${{ env.INTERNAL_REPO_DIR }}
fetch-depth: 0
- name: Push to public repository
run: |
cd ${INTERNAL_REPO_DIR}
git remote add public-origin https://${{ secrets.AIMET_CI }}@github.com/quic/aimet.git
git push public-origin ${{ env.INTERNAL_SRC_BRANCH }}:${{ env.PUBLIC_DST_BRANCH }}