Skip to content
Merged
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
18 changes: 6 additions & 12 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,6 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: build-output
path: .

- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
Expand All @@ -162,6 +156,9 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Build TypeScript
run: npm run build

- name: Build standalone binary
run: |
mkdir -p release-binaries
Expand Down Expand Up @@ -229,12 +226,6 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: build-output
path: .

- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
Expand All @@ -249,6 +240,9 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Build TypeScript
run: npm run build

- name: Build relay-acp standalone binary
run: |
mkdir -p release-binaries
Expand Down
Loading