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
8 changes: 5 additions & 3 deletions .github/workflows/core-dependency-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ jobs:
with:
node-version: "18"

# Install script dependencies first
- name: Install script dependencies
working-directory: ci/scripts
run: npm ci

Comment thread
Pratham-Mishra04 marked this conversation as resolved.
# Configure Git for automated commits
- name: Configure Git
working-directory: ci/scripts
Expand All @@ -49,9 +54,6 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
# Install dependencies
npm ci

# Extract core version from tag
CORE_VERSION=$(node extract-version.mjs "${GITHUB_REF}" core version)
echo "📦 Extracted core version: ${CORE_VERSION}"
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/transports-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ jobs:
with:
node-version: "18"

# Install script dependencies first
- name: Install script dependencies
working-directory: ci/scripts
run: npm ci

Comment thread
Pratham-Mishra04 marked this conversation as resolved.
# Configure Git for automated commits and tagging
- name: Configure Git
working-directory: ci/scripts
Expand All @@ -85,9 +90,6 @@ jobs:
id: manage_versions
working-directory: ci/scripts
run: |
# Install dependencies
npm ci

# Get current core version from go.mod and generate new transport version
node manage-versions.mjs transport-release >> "$GITHUB_OUTPUT"

Expand Down Expand Up @@ -125,7 +127,6 @@ jobs:
# Strip 'transports/' prefix and add 'v' prefix for upload script
VERSION_ONLY="${{ steps.manage_versions.outputs.transport_version }}"
VERSION_ONLY=${VERSION_ONLY#transports/v}
npm ci
cd ../..
node ci/scripts/upload-builds.mjs v${VERSION_ONLY}

Expand Down