1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-09 13:05:14 +00:00
QB64-PE/.github/workflows/run.yml

41 lines
1.5 KiB
YAML
Raw Normal View History

2020-01-03 11:44:16 +00:00
on:
push:
branches:
2020-01-04 13:52:15 +00:00
- development
2020-01-03 11:44:16 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
2020-01-03 11:48:11 +00:00
- uses: actions/checkout@v2
2020-01-03 11:51:50 +00:00
- name: Install dependencies
run: sudo apt update && sudo apt install libglu1-mesa-dev libncurses-dev
- name: Bootstrap compiler
2020-01-03 11:44:16 +00:00
run: .ci/bootstrap.sh
2020-01-03 12:29:13 +00:00
- name: Compile
run: .ci/compile.sh
2020-01-04 11:18:31 +00:00
- 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: githubactions
2020-01-04 13:40:05 +00:00
- name: Set deployment SSH key
if: github.event_name == 'push'
uses: shimataro/ssh-key-action@v1
with:
private-key: ${{ secrets.SSH_KEY }}
public-key: ${{ secrets.SSH_KEY_PUBLIC }}
known-hosts: "qb64.org ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAtmlTks7NPQHwvQiW+P2P8voWXfwYD+EuU39ERiaVw5g/lG/6pU1SKdrRBg2AtaPToPgK/nQyaid3sO2aWO00ixiKB3JPJoVp3nRY8YFi/AtVtVot/xh6+39fjP59tMCnMCbXTKjyMWL0kkwzd+OT8wryRZ/EgjK3vk9UGYzxKSr8G/KKV3GBDrJOdpHT2gNUcDFg6HSMvM860ZOF8n6jKRwp7MM0SpptufuQDgj/LhHcqQtFOqkhW9HXNmZR7IPchb5tsUubbPdSLu043B0ir2x5sCkK9V+inZExPg7KwIZ0yRsSv5esgLaBdyf1UToU3LU4ZM1hWjcJsp2fCBRkhw=="
config: |
Host remote-server
HostName qb64.org
User m6rosupy1q2t
- name: Package and deploy
if: github.event_name == 'push'
run: .ci/deploy.sh