rearrange tests #9
This file contains 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: CI/CD Pipeline | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
trigger-types-build: | |
runs-on: self-hosted | |
if: "!contains(github.event.head_commit.message, 'skip ci')" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ssh-key: ${{ secrets.TYPES_REPO_TOKEN }} | |
- name: Clone, copy thrift folder, and include specific files | |
run: | | |
git config --global user.name 'github-actions[bot]' | |
git config --global user.email 'github-actions[bot]@users.noreply.github.com' | |
git config --global pull.rebase true | |
git clone -b dev https://github.com/alexandriaproject-io/alexandria-project-types.git | |
ls | |
cd alexandria-project-types | |
echo $(( $(cat nonce) + 1 )) > nonce | |
ls | |
git add . | |
git commit -m "triggerd by llm-inference" | |
git status | |
pwd | |
git remote show origin | |
git push origin dev | |