Browse Source

add container publishing

pull/113/head
Sacha Weatherstone 3 years ago
parent
commit
172549d099
  1. 27
      .github/workflows/ci.yml
  2. 5
      Containerfile

27
.github/workflows/ci.yml

@ -2,6 +2,10 @@ name: CI
on: push
permissions:
contents: read
packages: write
jobs:
build-and-package:
runs-on: ubuntu-latest
@ -29,3 +33,26 @@ jobs:
prerelease: false
files: |
./dist/build.tar
- name: Buildah Build
id: build-container
uses: redhat-actions/[email protected]
with:
containerfiles: |
./container/Containerfile
image: ${{github.event.repository.full_name}}
tags: latest ${{ github.sha }}
oci: true
- name: Push To Registry
id: push-to-registry
uses: redhat-actions/[email protected]
with:
image: ${{ steps.build-container.outputs.image }}
tags: ${{ steps.build-container.outputs.tags }}
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Print image url
run: echo "Image pushed to ${{ steps.push-to-registry.outputs.registry-paths }}"

5
Containerfile

@ -0,0 +1,5 @@
FROM registry.access.redhat.com/ubi9/nginx-122:1-12
ADD dist .
CMD nginx -g "daemon off;"
Loading…
Cancel
Save