Skip to content

Commit 66788f9

Browse files
committed
less uploads
1 parent 793b4e4 commit 66788f9

File tree

2 files changed

+3
-13
lines changed

2 files changed

+3
-13
lines changed

.github/workflows/wizard-ci.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -564,6 +564,7 @@ jobs:
564564
CI_SOURCE: ${{ needs.discover.outputs.input_source }}
565565

566566
- name: Prepare artifact name
567+
# Not used for anything rn
567568
if: always()
568569
id: artifact-name
569570
run: |
@@ -572,14 +573,6 @@ jobs:
572573
SAFE_NAME="${SAFE_NAME//\//-}"
573574
echo "safe_name=$SAFE_NAME" >> $GITHUB_OUTPUT
574575
575-
- name: Upload logs
576-
# Skip in act (local runner) - artifact upload requires GitHub infrastructure
577-
if: always() && !env.ACT
578-
uses: actions/upload-artifact@v4
579-
with:
580-
name: wizard-ci-logs-${{ github.run_id }}-${{ steps.artifact-name.outputs.safe_name }}
581-
path: wizard-output.log
582-
583576
- name: Upload examples resources
584577
# Only upload once (from the first matrix job) since the zip is identical across all jobs
585578
if: always() && !env.ACT && matrix.app == needs.discover.outputs.first_app

services/wizard-ci/index.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ import {
2424
checkout,
2525
getCurrentBranch,
2626
getRepoRoot,
27-
getRemoteUrl,
2827
listBranches,
2928
pushAndCreatePR,
3029
switchOrCreateBranch,
@@ -410,8 +409,7 @@ async function pushOnlyMode(opts: Options): Promise<void> {
410409

411410
// Push and create PR
412411
console.log("\n[1/2] Pushing to remote...");
413-
const remoteUrl = getRemoteUrl(repoRoot, opts.remote);
414-
console.log(` Remote: ${opts.remote} (${remoteUrl})`);
412+
console.log(` Remote: ${opts.remote}`);
415413

416414
// Extract app name and shortId from branch name if it follows wizard-ci pattern
417415
const branchMatch = targetBranch.match(/^wizard-ci\/(.+)\/([a-f0-9]{7})$/);
@@ -618,8 +616,7 @@ async function runCI(app: App, opts: Options, triggerId: string): Promise<boolea
618616
619617
// 5. Push and create PR
620618
console.log("[5/5] Pushing and creating PR...");
621-
const remoteUrl = getRemoteUrl(repoRoot, opts.remote);
622-
console.log(` Remote: ${opts.remote} (${remoteUrl})`);
619+
console.log(` Remote: ${opts.remote}`);
623620
624621
const prMeta: PRMetadata = {
625622
appName: app.name,

0 commit comments

Comments
 (0)