Skip to content

Upgrade pytroll-collectors to 0.17.0 #2

Upgrade pytroll-collectors to 0.17.0

Upgrade pytroll-collectors to 0.17.0 #2

Workflow file for this run

name: Build and Push Image
on:
push:
tags:
- '*'
jobs:
build:
name: Build and push image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Image
id: build-image
uses: redhat-actions/buildah-build@v2
with:
image: weather-satellites-segment-gatherer
tags: latest ${{ github.ref_name }}
containerfiles: |
./Dockerfile
- 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/fmi
username: ${{ secrets.QUAYIO_USERNAME }}
password: ${{ secrets.QUAYIO_PASSWORD }}
- name: Print image url
run: echo "Image pushed to ${{ steps.push-to-quay.outputs.registry-paths }}"