Skip to content

Commit

Permalink
temp: add gn4 docker build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jahow committed Oct 18, 2024
1 parent 885db4c commit 425cba1
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/gn4-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Artifacts
run-name: 📦 Generate GN4 + DCAT-AP docker image

on: push

concurrency:
group: gn4-build-${{ github.ref }}
cancel-in-progress: true

jobs:
build-gn4-docker:
name: Build custom docker image for GeoNetwork 4
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ needs.checks.outputs.ref }} # use the PR head ref if applicable; otherwise keep default behaviour
persist-credentials: false
fetch-depth: 0

- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}

- name: Build GN4 docker image
working-directory: support-services/gn4
run: docker build . -t geonetwork/geonetwork-dcat-ap:latest

- name: Push GN4 docker image
run: docker push geonetwork/geonetwork-dcat-ap:latest

0 comments on commit 425cba1

Please sign in to comment.