Make for loops almost work #122
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: macOS | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Get Submodules | |
run: git submodule update --init --recursive | |
- name: Get KincTools_macos | |
run: git clone https://github.com/Kode/KincTools_macos.git --depth 1 | |
- name: Compile | |
run: ./KincTools_macos/kmake --compile | |
- name: Copy binary | |
run: cp build/build/Release/kongruent KincTools_macos/kongruent | |
- name: Set name | |
run: git config --global user.name "Robbot" | |
- name: Set email | |
run: git config --global user.email "[email protected]" | |
- name: Commit binary | |
id: commit | |
continue-on-error: true | |
run: git -C KincTools_macos commit -a -m "Update kong binary to $GITHUB_SHA." | |
- name: Tag binary | |
if: steps.commit.outcome == 'success' | |
run: git -C KincTools_macos tag kong_$GITHUB_SHA | |
- name: Push binary | |
id: push1 | |
if: steps.commit.outcome == 'success' | |
continue-on-error: true | |
run: git -C KincTools_macos push https://Kode-Robbot:[email protected]/Kode/KincTools_macos.git main --tags | |
env: | |
ROBBOT_PASS: ${{ secrets.ROBBOT_PASS }} | |
- name: Pull | |
if: steps.commit.outcome == 'success' && steps.push1.outcome != 'success' | |
run: git -C KincTools_macos pull --no-rebase | |
- name: Push binary again | |
if: steps.commit.outcome == 'success' && steps.push1.outcome != 'success' | |
continue-on-error: true | |
run: git -C KincTools_macos push https://Kode-Robbot:[email protected]/Kode/KincTools_macos.git main --tags | |
env: | |
ROBBOT_PASS: ${{ secrets.ROBBOT_PASS }} |