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
2 changes: 1 addition & 1 deletion .github/workflows/release-compiler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ permissions:
jobs:
publish-compiler:
runs-on: ubuntu-latest
if: github.repository == 'apache/fory'
if: github.repository == 'apache/fory' && !startsWith(github.ref_name, 'go/fory')
steps:
- uses: actions/checkout@v5

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-csharp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ concurrency:
jobs:
publish-csharp:
runs-on: ubuntu-latest
if: github.repository == 'apache/fory'
if: github.repository == 'apache/fory' && !startsWith(github.ref_name, 'go/fory')
env:
NUGET_SOURCE: https://api.nuget.org/v3/index.json
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-dart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ concurrency:
jobs:
publish-dart:
runs-on: ubuntu-latest
if: github.repository == 'apache/fory'
if: github.repository == 'apache/fory' && !startsWith(github.ref_name, 'go/fory')
permissions:
contents: read
id-token: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-javascript.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ concurrency:
jobs:
publish-npm:
runs-on: ubuntu-latest
if: github.repository == 'apache/fory'
if: github.repository == 'apache/fory' && !startsWith(github.ref_name, 'go/fory')
steps:
- uses: actions/checkout@v5

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ permissions:
jobs:
publish-wheels:
name: Publish Wheels
if: ${{ github.event.workflow_run.conclusion == 'success' }}
if: ${{ github.event.workflow_run.conclusion == 'success' && !startsWith(github.event.workflow_run.head_branch, 'go/fory') }}
runs-on: ubuntu-latest
steps:
- name: Download all wheel artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ permissions:
jobs:
publish-rust:
runs-on: ubuntu-latest
if: github.repository == 'apache/fory'
if: github.repository == 'apache/fory' && !startsWith(github.ref_name, 'go/fory')
steps:
- uses: actions/checkout@v5

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
[![Maven Version](https://img.shields.io/maven-central/v/org.apache.fory/fory-core?style=for-the-badge)](https://search.maven.org/#search|gav|1|g:"org.apache.fory"%20AND%20a:"fory-core")
[![Crates.io](https://img.shields.io/crates/v/fory.svg?style=for-the-badge)](https://crates.io/crates/fory)
[![PyPI](https://img.shields.io/pypi/v/pyfory.svg?logo=PyPI&style=for-the-badge)](https://pypi.org/project/pyfory/)
[![npm](https://img.shields.io/npm/v/%40apache-fory%2Fcore?logo=npm&style=for-the-badge)](https://www.npmjs.com/package/@apache-fory/core)
[![pub.dev](https://img.shields.io/pub/v/fory?logo=dart&style=for-the-badge)](https://pub.dev/packages/fory)

**Apache Fory™** is a blazingly-fast multi-language serialization framework powered by **JIT compilation**, **zero-copy** techniques, and **advanced code generation**, achieving up to **170x performance improvement** while maintaining simplicity and ease of use.

Expand Down
Loading