Skip to content

Commit

Permalink
updated build_on_push action
Browse files Browse the repository at this point in the history
  • Loading branch information
niquerio committed May 9, 2022
1 parent 295cb15 commit 7538a24
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/build_on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Build latest catalog-solr-unstable and catalog-indexer-unstable on push
on: push

jobs:
build:
build-catalog-solr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -25,6 +25,19 @@ jobs:
tags: |
ghcr.io/mlibrary/${{ env.IMAGE_NAME }}:latest
ghcr.io/mlibrary/${{ env.IMAGE_NAME }}:${{ github.sha }}
build-catalog-indexer:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Log into Github Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push catalog-indexer
env:
IMAGE_NAME: catalog-indexer-unstable
Expand Down

0 comments on commit 7538a24

Please sign in to comment.