Skip to content

Commit 7bff177

Browse files
authored
Merge pull request #70 from patrickkabwe/feat/add-new-fs-funcs
Feat/add new fs funcs
2 parents 06b443c + 8364156 commit 7bff177

53 files changed

Lines changed: 2826 additions & 788 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/android-build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ on:
2626
- '**/react-native.config.js'
2727
- '**/nitro.json'
2828

29+
concurrency:
30+
group: ${{ github.workflow }}-${{ github.ref }}
31+
cancel-in-progress: true
32+
2933
jobs:
3034
build_new:
3135
name: Build Android Example App (new architecture)

.github/workflows/ios-build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ on:
3737
env:
3838
USE_CCACHE: 1
3939

40+
41+
concurrency:
42+
group: ${{ github.workflow }}-${{ github.ref }}
43+
cancel-in-progress: true
44+
4045
jobs:
4146
build_new:
4247
name: Build iOS Example App (new architecture)

.github/workflows/release.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
name: Release
22

33
on:
4-
push:
5-
branches:
6-
- main
7-
- next
8-
paths-ignore:
9-
- 'docs/**'
4+
workflow_dispatch:
105

116
permissions:
127
contents: read
@@ -47,10 +42,14 @@ jobs:
4742

4843
- name: Build lib
4944
run: bun run build
50-
45+
5146
- name: Release
5247
env:
5348
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5449
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
5550
NPM_CONFIG_PROVENANCE: true
51+
GIT_AUTHOR_NAME: ${{ github.actor }}
52+
GIT_AUTHOR_EMAIL: "${{ github.actor }}@users.noreply.github.com"
53+
GIT_COMMITTER_NAME: ${{ github.actor }}
54+
GIT_COMMITTER_EMAIL: "${{ github.actor }}@users.noreply.github.com"
5655
run: bun release

0 commit comments

Comments
 (0)