Skip to content

Commit

Permalink
Added job to build and push Docker image to repository
Browse files Browse the repository at this point in the history
  • Loading branch information
tgreenwood committed Apr 3, 2024
1 parent dcc311a commit 0903428
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/build_and_upload_docker_image_on_push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Build & Upload Fairspace-Jupyter Docker image

env:
DOCKER_REGISTRY: ghcr.io

on:
push:
branches:
- dev
- release
- devops/FAIRSPC-57_github_actions

jobs:
build-and-upload-jupyterhub:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Get version tag for artifact
run: |
BRANCH=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}
echo "Building images from the branch: $BRANCH"
VER=$(cat ./projects/jupyterhub-hub/VERSION)
echo "Building images of version: $VER"
if [ $BRANCH != "release" ]
then
VER=$VER-SNAPSHOT
fi
echo "fairspace_version=$VER" >> $GITHUB_ENV
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.DOCKER_REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.DOCKER_REGISTRY }}/${{ github.repository }}/jupyterhub-hub

- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: ./projects/jupyterhub-hub/
push: true
tags: ${{ env.DOCKER_REGISTRY }}/${{ github.repository }}/jupyterhub-hub:${{ env.VERSION }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 0903428

Please sign in to comment.