1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-01 09:10:37 +00:00

Just ssh action

This commit is contained in:
Luke Ceddia 2021-01-30 11:21:18 +11:00
parent 2ff7e953dd
commit b1d74ce57b
No known key found for this signature in database
GPG key ID: 319344384A0759B0

View file

@ -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