We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3916c1f commit 5091000Copy full SHA for 5091000
1 file changed
.github/workflows/create-pack.yml
@@ -0,0 +1,22 @@
1
+name: Autozip Pack
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - '*'
7
+ branches-ignore:
8
+ - main
9
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Create Pack
15
+ uses: appleboy/ssh-action@v1.0.3
16
+ with:
17
+ host: ${{ secrets.HOST }}
18
+ USERNAME: ${{ secrets.USERNAME }}
19
+ PORT: ${{ secrets.PORT }}
20
+ KEY: ${{ secrets.SSH }}
21
+ script: |
22
+ cd ./packs
0 commit comments