Skip to content

Create LICENSE

Create LICENSE #8

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main" ]
jobs:
deploy:
name: Build and push image
runs-on: ubuntu-latest
environment: deployment
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Build Image
id: build-image
uses: redhat-actions/buildah-build@v2
with:
image: christmasdream
tags: latest ${{ github.ref_name }}
containerfiles: |
./web-deployment/Dockerfile
context: ./web-deployment
- name: Push To quay.io
id: push-to-quay
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build-image.outputs.image }}
tags: ${{ steps.build-image.outputs.tags }}
registry: quay.io/rosalindfranklininstitute
username: ${{ secrets.QUAY_IO_USERNAME }}
password: ${{ secrets.QUAY_IO_PASSWORD }}
- name: Print image url
run: echo "Image pushed to ${{ steps.push-to-quay.outputs.registry-paths }}"