aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorFelix (xq) Queißner <git@mq32.de>2021-03-06 17:09:20 +0100
committerFelix (xq) Queißner <git@mq32.de>2021-03-06 17:28:56 +0100
commitf616e903c755b6b09bf0157ab6236fa6d77a80e5 (patch)
tree7329734100297ff7fdf0b35eb94b92c7521dd024 /.github/workflows
parent164bbfd7a3b938dc21b7a2fde63e133603a44ba0 (diff)
downloadkristall-f616e903c755b6b09bf0157ab6236fa6d77a80e5.tar.gz
Improves deployment.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml17
1 files changed, 13 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index eb72f48..0bf09af 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -46,13 +46,22 @@ jobs:
- name: make
run: make build/kristall
+ - name: Prepare deployment
+ run: macdeployqt build/kristall.app
+
- name: display
- run: ls build
+ run: |
+ uname -a
+ ls build
- - uses: actions/upload-artifact@v2
+ - name: Deploy via SCP
+ uses: garygrossgarten/github-action-scp@release
with:
- name: Kristall.app
- path: build/kristall.app
+ host: random-projects.net
+ username: generic-ci
+ privateKey: ${{ secrets.PRIVATE_KEY }}
+ local: "build/kristall.app"
+ remote: "kristall/Kristall-nightly-macos-x86_64.app"
#
# Disabled until both aqinstall and install-qt-action support the fixes…