Skip to content

Commit

Permalink
updating version
Browse files Browse the repository at this point in the history
Signed-off-by: Rajpal Chauhan <[email protected]>
  • Loading branch information
rajpalc7 committed Jan 17, 2024
1 parent 8df3aa7 commit 4ce7a8f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
include:
- service: aries-endorser-agent
GIT_REPO_URL: bcgov/aries-endorser-service
SOURCE_CONTEXT_DIR: docker/acapy
DOCKER_FILE_PATH: Dockerfile.acapy
SOURCE_CONTEXT_DIR: docker/acapy # The context dir, context, sets the context for the build. i.e. where the build will source files from.
DOCKER_FILE_PATH: Dockerfile.acapy # The docker path, file, is the relative path to the docker file from the root of the repo.
# - service: aries-endorser-db
# GIT_REPO_URL: bcgov/aries-endorser-service
# DOCKER_FILE_PATH:
Expand Down Expand Up @@ -58,18 +58,18 @@ jobs:
ls -l
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

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

- name: Prepare docker tags for image
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: ghcr.io/bcgov/dts-endorser-service/${{ matrix.service }}
flavor: |
Expand All @@ -85,7 +85,7 @@ jobs:
- name: Build and push Docker image
id: docker_build
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: ${{ matrix.SOURCE_CONTEXT_DIR }}
file: ${{ matrix.SOURCE_CONTEXT_DIR }}/${{ matrix.DOCKER_FILE_PATH }}
Expand All @@ -111,7 +111,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Deploy to ${{ env.ENVIRONMENT }}
uses: ./.github/workflows/actions/deploy
Expand Down

0 comments on commit 4ce7a8f

Please sign in to comment.