Skip to content

Commit

Permalink
feat(ci): Make CI great again (#1486)
Browse files Browse the repository at this point in the history
  • Loading branch information
itsdevbear authored Jun 14, 2024
1 parent d9c272e commit 0bdd11d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ env:
GCP_SERVICE_ACCOUNT: 'sa-apps-deployment@prj-berachain-automation-st-01.iam.gserviceaccount.com'
GCP_REGISTRY: northamerica-northeast1-docker.pkg.dev
GHCR_REGISTRY: ghcr.io
PUSH_DOCKER_IMAGE: ${{ (github.base_ref == github.head_ref && github.event_name == 'push') || github.ref == 'refs/tags/v*.*.*'}}
VERSION: ${{ (github.ref == 'refs/heads/main' || github.ref == 'refs/tags/v*.*.*' ) && github.ref_name || github.sha }}
PUSH_DOCKER_IMAGE: ${{ (github.base_ref == github.head_ref && github.event_name == 'push') || github.ref == 'refs/tags/v*'}}
VERSION: ${{ (github.ref == 'refs/heads/main' && 'main') || (github.ref == 'refs/tags/v*' && github.ref_name) || github.sha }}

jobs:

Expand Down Expand Up @@ -181,6 +181,7 @@ jobs:
echo "GitHub Head Ref: ${{ github.head_ref }}"
echo "GitHub Base Ref: ${{ github.base_ref }}"
echo "PUSH_DOCKER_IMAGE: ${{ env.PUSH_DOCKER_IMAGE }}"
echo "VERSION: ${{ env.VERSION }}"
- name: Build Docker image
run: |
make build-docker
Expand Down

0 comments on commit 0bdd11d

Please sign in to comment.