-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (38 loc) · 1.22 KB
/
deploy-debian-stable.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Deploy Debian Stable
on:
workflow_dispatch:
release:
types: [created]
jobs:
deploy-debian-stable:
runs-on: ubuntu-latest
steps:
- name: Checkout this repository
uses: actions/[email protected]
with:
path: keisan
- name: Build stable Debian package
uses: ichiro-its/ros2-build-debian-action@main
with:
ros2-distro: rolling
- name: Deploy stable Debian package to server
uses: appleboy/scp-action@master
with:
host: ${{ secrets.SSH_HOST }}
port: ${{ secrets.SSH_PORT }}
username: ${{ secrets.SSH_USER }}
password: ${{ secrets.SSH_PASS }}
source: "package/*.deb"
target: "~/temp/stable/keisan/"
rm: true
- name: Prepare stable Debian package in the server
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SSH_HOST }}
port: ${{ secrets.SSH_PORT }}
username: ${{ secrets.SSH_USER }}
password: ${{ secrets.SSH_PASS }}
script: |
cd ${{ secrets.SERVER_REPO_DIR }}/debian
reprepro includedeb stable ~/temp/stable/keisan/package/*.deb
rm -rf ~/temp/stable/keisan/