From b1d74ce57be2482dae348125fb8901b07187cc8a Mon Sep 17 00:00:00 2001 From: Luke Ceddia Date: Sat, 30 Jan 2021 11:21:18 +1100 Subject: [PATCH] Just ssh action --- .github/workflows/run.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/run.yml b/.github/workflows/run.yml index 8c04f141c..ab2ca4062 100644 --- a/.github/workflows/run.yml +++ b/.github/workflows/run.yml @@ -10,21 +10,21 @@ jobs: if: "!contains(github.event.head_commit.message, 'ci-skip')" steps: - uses: actions/checkout@v2 - - name: Install dependencies - run: sudo apt update && sudo apt install libglu1-mesa-dev libncurses-dev - - name: Bootstrap compiler - run: .ci/bootstrap.sh lnx - - name: Compile - run: .ci/compile.sh - - name: Update source - if: github.event_name == 'push' - run: .ci/update-source.sh - - name: Push to repository - if: github.event_name == 'push' - uses: ad-m/github-push-action@19caa5c351f47734055690f7d01aaaef2f9114d5 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: development + # - name: Install dependencies + #run: sudo apt update && sudo apt install libglu1-mesa-dev libncurses-dev + #- name: Bootstrap compiler + #run: .ci/bootstrap.sh lnx + #- name: Compile + #run: .ci/compile.sh + #- name: Update source + #if: github.event_name == 'push' + #run: .ci/update-source.sh + #- name: Push to repository + #if: github.event_name == 'push' + #uses: ad-m/github-push-action@19caa5c351f47734055690f7d01aaaef2f9114d5 + #with: + # github_token: ${{ secrets.GITHUB_TOKEN }} + # branch: development - name: Set deployment SSH key if: github.event_name == 'push' uses: shimataro/ssh-key-action@v2.1.0