Skip to content

Merge pull request #6 from jritter/dependabot/go_modules/github.com/p… #26

Merge pull request #6 from jritter/dependabot/go_modules/github.com/p…

Merge pull request #6 from jritter/dependabot/go_modules/github.com/p… #26

Workflow file for this run

name: Publish (main)
on:
push:
branches: [ main ]
jobs:
image:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Login to ghcr.io
uses: redhat-actions/podman-login@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Buildah Action
id: build-image
uses: redhat-actions/buildah-build@v2
with:
image: ghcr.io/jritter/openscap-report-publisher
tags: latest ${{ github.sha }}
containerfiles: |
./Containerfile
build-args: |
VERSION=main
HASH=${{ github.sha }}
- name: Push To ghcr
id: push-to-ghcr
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build-image.outputs.image }}
tags: ${{ steps.build-image.outputs.tags }}
registry: ghcr.io
- name: Print image url
run: echo "Image pushed to ${{ steps.push-to-ghcr.outputs.registry-paths }}"