aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-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…