Skip to content

Commit 5345256

Browse files
authored
chore: skip auto release for tag starts with go (#3584)
## Why? ## What does this PR do? ## Related issues ## AI Contribution Checklist - [ ] Substantial AI assistance was used in this PR: `yes` / `no` - [ ] If `yes`, I included a completed [AI Contribution Checklist](https://github.com/apache/fory/blob/main/AI_POLICY.md#9-contributor-checklist-for-ai-assisted-prs) in this PR description and the required `AI Usage Disclosure`. - [ ] If `yes`, my PR description includes the required `ai_review` summary and screenshot evidence of the final clean AI review results from both fresh reviewers on the current PR diff or current HEAD after the latest code changes. ## Does this PR introduce any user-facing change? - [ ] Does this PR introduce any public API change? - [ ] Does this PR introduce any binary protocol compatibility change? ## Benchmark
1 parent 535e620 commit 5345256

7 files changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/release-compiler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ permissions:
2929
jobs:
3030
publish-compiler:
3131
runs-on: ubuntu-latest
32-
if: github.repository == 'apache/fory'
32+
if: github.repository == 'apache/fory' && !startsWith(github.ref_name, 'go/fory')
3333
steps:
3434
- uses: actions/checkout@v5
3535

.github/workflows/release-csharp.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ concurrency:
3333
jobs:
3434
publish-csharp:
3535
runs-on: ubuntu-latest
36-
if: github.repository == 'apache/fory'
36+
if: github.repository == 'apache/fory' && !startsWith(github.ref_name, 'go/fory')
3737
env:
3838
NUGET_SOURCE: https://api.nuget.org/v3/index.json
3939
steps:

.github/workflows/release-dart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ concurrency:
3333
jobs:
3434
publish-dart:
3535
runs-on: ubuntu-latest
36-
if: github.repository == 'apache/fory'
36+
if: github.repository == 'apache/fory' && !startsWith(github.ref_name, 'go/fory')
3737
permissions:
3838
contents: read
3939
id-token: write

.github/workflows/release-javascript.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ concurrency:
3333
jobs:
3434
publish-npm:
3535
runs-on: ubuntu-latest
36-
if: github.repository == 'apache/fory'
36+
if: github.repository == 'apache/fory' && !startsWith(github.ref_name, 'go/fory')
3737
steps:
3838
- uses: actions/checkout@v5
3939

.github/workflows/release-python.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ permissions:
3131
jobs:
3232
publish-wheels:
3333
name: Publish Wheels
34-
if: ${{ github.event.workflow_run.conclusion == 'success' }}
34+
if: ${{ github.event.workflow_run.conclusion == 'success' && !startsWith(github.event.workflow_run.head_branch, 'go/fory') }}
3535
runs-on: ubuntu-latest
3636
steps:
3737
- name: Download all wheel artifacts

.github/workflows/release-rust.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ permissions:
2929
jobs:
3030
publish-rust:
3131
runs-on: ubuntu-latest
32-
if: github.repository == 'apache/fory'
32+
if: github.repository == 'apache/fory' && !startsWith(github.ref_name, 'go/fory')
3333
steps:
3434
- uses: actions/checkout@v5
3535

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
[![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")
99
[![Crates.io](https://img.shields.io/crates/v/fory.svg?style=for-the-badge)](https://crates.io/crates/fory)
1010
[![PyPI](https://img.shields.io/pypi/v/pyfory.svg?logo=PyPI&style=for-the-badge)](https://pypi.org/project/pyfory/)
11+
[![npm](https://img.shields.io/npm/v/%40apache-fory%2Fcore?logo=npm&style=for-the-badge)](https://www.npmjs.com/package/@apache-fory/core)
12+
[![pub.dev](https://img.shields.io/pub/v/fory?logo=dart&style=for-the-badge)](https://pub.dev/packages/fory)
1113

1214
**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.
1315

0 commit comments

Comments
 (0)