diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2021-03-06 18:24:12 +0100 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2021-03-06 18:24:12 +0100 |
| commit | 05d4b8dd115438686be3ae38e2f48ab7fc44cfe6 (patch) | |
| tree | 2ff07aa6c42fd09f5bee1625a96b252f3df55db5 /.github/workflows | |
| parent | d114e97f05cbe7656cc20d9c8096f243cfe30093 (diff) | |
| download | kristall-05d4b8dd115438686be3ae38e2f48ab7fc44cfe6.tar.gz | |
More CI stuff
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0bf09af..62ac8b7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -54,14 +54,29 @@ jobs: uname -a ls build + - uses: actions/upload-artifact@v2 + with: + name: Kristall.app + path: build/kristall.app + - name: Deploy via SCP - uses: garygrossgarten/github-action-scp@release + uses: horochx/deploy-via-scp@master with: + local: build/kristall.app + remote: kristall/Kristall-nightly-macos-x86_64.app host: random-projects.net - username: generic-ci - privateKey: ${{ secrets.PRIVATE_KEY }} - local: "build/kristall.app" - remote: "kristall/Kristall-nightly-macos-x86_64.app" + port: 22 + user: generic-ci + key: ${{ secrets.PRIVATE_KEY }} # + + # - name: Deploy via SCP + # uses: garygrossgarten/github-action-scp@release + # with: + # 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… |
