Merge pull request #2 from veniceofcode/patch-3 #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build podman Image for the pythin app | |
on: | |
push: | |
branches: | |
- main # adjust the branch name if needed | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Install Podman | |
run: | | |
sudo apt update | |
sudo apt install -y podman | |
- name: Build Docker Image | |
run: | | |
podman build -t gha-python-image . |