Skip to content

Commit f6ff7a3

Browse files
authored
Create podman-run.yml
1 parent 8c1cb48 commit f6ff7a3

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/podman-run.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Podman Run
2+
3+
on:
4+
workflow_run:
5+
workflows:
6+
- Docker
7+
types:
8+
- completed
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: ssh and podman run
14+
uses: appleboy/[email protected]
15+
with:
16+
host: ${{ secrets.HOST }}
17+
username: ${{ secrets.USERNAME }}
18+
password: ${{ secrets.PASSWORD }}
19+
port: ${{ secrets.PORT }}
20+
script: |
21+
whoami
22+
ls -al
23+

0 commit comments

Comments
 (0)