Skip to content

Commit

Permalink
Merge pull request #285 from silinternational/develop
Browse files Browse the repository at this point in the history
Release 10.1.3 --Push for ghcr.io image
  • Loading branch information
Praveenraj-K authored Oct 11, 2024
2 parents 625a845 + 540979f commit c27ccdf
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Test and Publish

on:
push:
branches: [ 'main' ] #Triger on the main branch
tags: [ '[0-9]+.[0-9]+.[0-9]+' ] # Trigger on version tags like '0.1.0'

jobs:
tests:
Expand All @@ -22,26 +24,38 @@ jobs:
run: docker compose run ssp-sp1.local ./run-metadata-tests.sh

build-and-publish:
name: Build and Publish
name: Build and Publish Docker image
needs: tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ vars.DOCKER_ORG }}/${{ github.event.repository.name }}
images: |
${{ vars.DOCKER_ORG }}/${{ github.event.repository.name }}
ghcr.io/${{ github.repository }}
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
Expand Down

0 comments on commit c27ccdf

Please sign in to comment.