Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 1 addition & 11 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy to Cloud (or Production)
name: Deploy Workflow

# Trigger
on:
Expand All @@ -10,8 +10,6 @@ on:

# Define common variables
env:
PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }}
PROJECT_NUM: ${{ secrets.GCP_PROJECT_NUM }}
SERVICE_NAME: blockfrost-webhook
REGION: us-central1
IMAGE_NAME: us-central1-docker.pkg.dev/${{ secrets.GCP_PROJECT_ID }}/dart-webhooks/blockfrost-secure-webhook:latest
Expand All @@ -36,14 +34,6 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

# --- DEBUG STEP ADDED HERE ---
- name: Debug Environment Variables
run: |
echo "GCP Project ID (Human Readable): $PROJECT_ID"
echo "GCP Project Number (WIF Auth): $PROJECT_NUM"
echo "Image Name: $IMAGE_NAME" # Ensure IMAGE_NAME is defined in the top env block
# -----------------------------

# --- 1. Authenticate with Google Cloud (using WIF) ---
- id: 'auth'
name: 'Authenticate to Google Cloud'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Dart Validate Workflow
name: Validate Workflow

on:
# Triggers on every 'git push' to any branch.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## blockfrost-secure-webhooks

[![Dart Unit Tests](https://github.com/andro-devs/blockfrost-secure-webhooks/actions/workflows/validate.yml/badge.svg)](https://github.com/andro-devs/blockfrost-secure-webhooks/actions/workflows/validate.yml/badge.svg) [![GitHub license](https://img.shields.io/github/license/andro-devs/blockfrost-secure-webhooks)](https://github.com/andro-devs/blockfrost-secure-webhooks/blob/main/LICENSE) [![Code Coverage](https://codecov.io/gh/andro-devs/blockfrost-secure-webhooks/branch/main/graph/badge.svg)](https://codecov.io/gh/andro-devs/blockfrost-secure-webhooks)
[![Dart Unit Tests](https://github.com/andro-devs/blockfrost-secure-webhooks/actions/workflows/validate.yml/badge.svg)](https://github.com/andro-devs/blockfrost-secure-webhooks/actions/workflows/validate.yml/badge.svg) [![Dart Deploy](https://github.com/andro-devs/blockfrost-secure-webhooks/actions/workflows/deploy.yml/badge.svg)](https://github.com/andro-devs/blockfrost-secure-webhooks/actions/workflows/deploy.yml/badge.svg) [![GitHub license](https://img.shields.io/github/license/andro-devs/blockfrost-secure-webhooks)](https://github.com/andro-devs/blockfrost-secure-webhooks/blob/main/LICENSE) [![Code Coverage](https://codecov.io/gh/andro-devs/blockfrost-secure-webhooks/branch/main/graph/badge.svg)](https://codecov.io/gh/andro-devs/blockfrost-secure-webhooks)

##### @formatter:off

Expand Down