Skip to content

Commit

Permalink
Merge pull request #6 from ppodgorsek/issue-3
Browse files Browse the repository at this point in the history
Issue #3 - Create a CI pipeline to build the project
  • Loading branch information
ppodgorsek committed Feb 14, 2024
2 parents c79fbd7 + 0d4b140 commit 811d557
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Docker

on:
push:
# Publish `main` as Docker `latest` image.
branches:
- main

# Publish `v1.2.3` tags as releases.
tags:
- "*"

# Run tests for any PRs.
pull_request:

env:
# The image name
IMAGE_NAME: ansible-awx-cli:ci

jobs:
# Build and run tests.
# See also https://docs.docker.com/docker-hub/builds/automated-testing/
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build image
run: podman build . --tag $IMAGE_NAME --file Containerfile

0 comments on commit 811d557

Please sign in to comment.