Skip to content

Commit

Permalink
ci: Add Podman build & deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
drikusroor committed Jan 19, 2024
1 parent 833b5d1 commit 1b4584e
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/podman.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Podman build & deploy

on:
push:
workflow_dispatch:

jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Build Podman images
run: podman-compose -f docker-compose-build.yml build
- name: Deploy Podman images
run: podman-compose -f docker-compose-build.yml up -d

0 comments on commit 1b4584e

Please sign in to comment.