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

Deploy macos build

This commit is contained in:
Luke Ceddia 2020-01-06 18:40:15 +11:00
parent 5200bcb23e
commit 963b1afd3a
2 changed files with 17 additions and 2 deletions

View file

@ -1,9 +1,10 @@
#!/bin/bash
OS=$1
TZ=UTC now=`date +"%F-%H-%M-%S"`
filename="/tmp/qb64_${now}_`echo ${GITHUB_SHA} | sed 's/\(.......\).*$/\1/'`_lnx.tar.gz"
filename="/tmp/qb64_${now}_`echo ${GITHUB_SHA} | sed 's/\(.......\).*$/\1/'`_$OS.tar.gz"
cd ..
tar --create --auto-compress --file ${filename} --exclude-from=qb64/.ci/common-exclusion.list --exclude-from=qb64/.ci/lnx-exclusion.list qb64
tar --create --auto-compress --file ${filename} --exclude-from=qb64/.ci/common-exclusion.list --exclude-from=qb64/.ci/$OS-exclusion.list qb64
# Send to server
# Sometimes the connection can be a bit flakey, so try multiple times on error

View file

@ -13,3 +13,17 @@ jobs:
run: .ci/bootstrap.sh osx
- name: Compile
run: .ci/compile.sh
- 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 osx