Skip to content

Commit

Permalink
Merge pull request #476 from tcet-opensource/development
Browse files Browse the repository at this point in the history
Replaced dockerhub with ghcr
  • Loading branch information
TejasNair9977 authored Jan 6, 2024
2 parents 8c01ae8 + 04a17e6 commit 442c3ae
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 25 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/dockerhub.yml

This file was deleted.

42 changes: 42 additions & 0 deletions .github/workflows/ghcrPush.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Publishing Docker Image to ghcr.io

on:
push:
branches:
- main
tags:
- v*
workflow_dispatch:
pull_request:

jobs:
push:
name: Building Image and pushing
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Build image
run: docker build . --file Dockerfile --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}"
- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
- name: Push image
run: |
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
This changes all uppercase characters to lowercase.

VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
This strips the git ref prefix from the version.

[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
This strips the "v" prefix from the tag name.

[ "$VERSION" == "main" ] && VERSION=latest
echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION

0 comments on commit 442c3ae

Please sign in to comment.