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

Add aws action

This commit is contained in:
Luke Ceddia 2021-02-01 20:47:45 +11:00
parent b28a929d50
commit 46c8f9fe84
No known key found for this signature in database
GPG key ID: 319344384A0759B0
2 changed files with 14 additions and 23 deletions

View file

@ -2,18 +2,13 @@
OS=$1
TZ=UTC now=`date +"%F-%H-%M-%S"`
filename="/tmp/qb64_${now}_`echo ${GITHUB_SHA} | sed 's/\(.......\).*$/\1/'`_$OS.tar.gz"
BUCKET=qb64-dev-builds
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/$OS-exclusion.list qb64
# Send to server
# Sometimes the connection can be a bit flakey, so try multiple times on error
for i in `seq 1 10`
do scp ${filename} remote-server:autobuilds/development/
if [ "$?" -eq 0 ]
then exit 0
fi
echo scp $i failed
current_files=$(aws --output text --query 'Contents[].Key' s3api list-objects --bucket ${BUCKET} --prefix ${OS})
aws s3 cp ${filename} s3://${BUCKET}/${OS}/
for f in current_files; do
aws s3 rm s3://${BUCKET}/$f
done
exit 1

View file

@ -7,7 +7,7 @@ on:
jobs:
linux-build:
runs-on: ubuntu-latest
if: "contains(github.event.head_commit.message, 'ci-skip')"
if: "!contains(github.event.head_commit.message, 'ci-skip')"
steps:
- uses: actions/checkout@v2
- name: Install dependencies
@ -25,18 +25,14 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: development
- name: Set deployment SSH key
- name: Setup aws
if: github.event_name == 'push'
uses: shimataro/ssh-key-action@v2.1.0
uses: aws-actions/configure-aws-credentials@v1
with:
key: ${{ secrets.SSH_KEY }}
# "qb64.org ssh-rsa AAAA" etc.
known_hosts: ${{ secrets.KNOWN_HOSTS }}
config: |
Host remote-server
HostName qb64.org
User m6rosupy1q2t
- name: Package and deploy
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-2
- name: Publish to S3
if: github.event_name == 'push'
run: .ci/deploy.sh lnx
@ -90,7 +86,7 @@ jobs:
windows-x64-build:
runs-on: windows-latest
if: "!contains(github.event.head_commit.message, 'ci-skip')"
if: "contains(github.event.head_commit.message, 'ci-skip')"
env:
PLATFORM: x64
steps: