We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2db900 commit 566f88fCopy full SHA for 566f88f
.github/workflows/release.yml
@@ -31,3 +31,15 @@ jobs:
31
port: ${{ secrets.SSH_PORT }}
32
source: "bin/pastemyst"
33
target: "builds"
34
+ - name: move binary and pull repo
35
+ uses: appleboy/ssh-action@master
36
+ with:
37
+ host: ${{ secrets.SSH_HOST }}
38
+ username: ${{ secrets.SSH_USER }}
39
+ key: ${{ secrets.SSH_SECRET }}
40
+ port: ${{ secrets.SSH_PORT }}
41
+ script: |
42
+ rm pastemyst/pastemyst
43
+ mv builds/bin/pastemyst pastemyst/pastemyst
44
+ cd pastemyst
45
+ git pull origin main
0 commit comments