diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2021-03-06 17:09:20 +0100 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2021-03-06 17:28:56 +0100 |
| commit | f616e903c755b6b09bf0157ab6236fa6d77a80e5 (patch) | |
| tree | 7329734100297ff7fdf0b35eb94b92c7521dd024 /.github/workflows | |
| parent | 164bbfd7a3b938dc21b7a2fde63e133603a44ba0 (diff) | |
| download | kristall-f616e903c755b6b09bf0157ab6236fa6d77a80e5.tar.gz | |
Improves deployment.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 17 |
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… |
