Skip to content
This repository was archived by the owner on Apr 2, 2026. It is now read-only.

Commit 7c0e49a

Browse files
authored
Revert "ci: simplify publish workflow (#1287)" (#1295)
This reverts commit c5c5fef. This change actually broke CI on `main`.
1 parent cfd9e00 commit 7c0e49a

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/ci-publish/action.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,11 @@ runs:
44
steps:
55
- name: Cargo publish
66
shell: bash
7-
run: cargo publish --workspace
7+
run: |
8+
for package in serde_v8 deno_ops deno_core; do
9+
cargo publish -p $package
10+
done
11+
- name: Get tag version
12+
shell: bash
13+
id: get_tag_version
14+
run: echo TAG_VERSION=${GITHUB_REF/refs\/tags\//} >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)