Skip to content

Bump fiona from 1.9.5 to 1.10.0 in /requirements #457

Bump fiona from 1.9.5 to 1.10.0 in /requirements

Bump fiona from 1.9.5 to 1.10.0 in /requirements #457

Workflow file for this run

---
name: Docker
on:
workflow_dispatch:
push:
branches:
- develop
- integrate-1.9
paths:
- "**"
pull_request:
branches:
- develop
- integrate-1.9
release:
types: [published]
env:
IMAGE_NAME: ${{ github.repository }}
jobs:
build_n_push:
runs-on: ubuntu-latest
steps:
- name: Checkout Git
uses: actions/checkout@v4
- name: Determine Docker info from repo
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.IMAGE_NAME }}
- name: Log the image labels
run: echo '${{ steps.meta.outputs.labels }}'
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/#-action@v3
with:
username: ${{ secrets.GADOCKERSVC_USERNAME }}
password: ${{ secrets.GADOCKERSVC_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
builder: ${{ steps.buildx.outputs.name }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
ENVIRONMENT=deployment