-
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: cleanup workspaces * ci: add semantic-release * ci: add workflow_call trigger to review * ci: add provenance to publishConfig * ci: remove v from tagFormat * fix: force major release BREAKING CHANGE: Upgrade native packages and migrate components * ci: move native builds to review * ci: run release immediate for debugging * ci: use android working directory for build * docs: remove RELEASE.md * chore: remove manual changelog task * ci: enable release on beta branch * ci: keep default tagFormat * ci: setup npm tag fixes * ci: run review on mr to beta * ci: run fix tags on beta * ci: fix name * ci: clarify workflow_call * ci: disable debugging * ci: run fix tags in pr * ci: setup fix tags to run on beta * docs: prepare changelog for semantic-release * ci: remove fix npm tags workflow
- Loading branch information
1 parent
ea85130
commit 069b6c5
Showing
10 changed files
with
2,855 additions
and
239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- beta | ||
- alpha | ||
|
||
jobs: | ||
review: | ||
name: Review | ||
uses: ./.github/workflows/review.yml | ||
release: | ||
name: Release | ||
needs: [review] | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
issues: write | ||
pull-requests: write | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/setup | ||
- name: Audit Signatures | ||
run: npm audit signatures | ||
- name: Release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_ORG_TOKEN }} | ||
run: yarn semantic-release --dry-run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"plugins": [ | ||
"@semantic-release/commit-analyzer", | ||
"@semantic-release/release-notes-generator", | ||
"@semantic-release/changelog", | ||
"@semantic-release/npm", | ||
"@semantic-release/github", | ||
"@semantic-release/git" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,8 @@ | |
"description": "React Native library for creating maps with MapLibre Native for Android & iOS", | ||
"version": "10.0.0-alpha.29", | ||
"publishConfig": { | ||
"access": "public" | ||
"access": "public", | ||
"provenance": true | ||
}, | ||
"author": "MapLibre", | ||
"keywords": [ | ||
|
@@ -38,7 +39,6 @@ | |
"prepack": "bob build && yarn plugin:build" | ||
}, | ||
"workspaces": [ | ||
"apps/*", | ||
"packages/*" | ||
], | ||
"packageManager": "[email protected]", | ||
|
@@ -147,6 +147,8 @@ | |
"@maplibre/maplibre-gl-style-spec": "21.1.0", | ||
"@react-native/babel-preset": "^0.74.88", | ||
"@react-native/metro-config": "^0.74.88", | ||
"@semantic-release/changelog": "^6.0.3", | ||
"@semantic-release/git": "^10.0.1", | ||
"@sinonjs/fake-timers": "^11.2.2", | ||
"@testing-library/react-native": "^12.4.3", | ||
"@types/ejs": "^3.1.5", | ||
|
@@ -167,6 +169,7 @@ | |
"react-native": "^0.74.6", | ||
"react-native-builder-bob": "^0.32.0", | ||
"react-test-renderer": "18.2.0", | ||
"semantic-release": "^24.2.0", | ||
"tsx": "^4.19.2", | ||
"typescript": "^5.3.3" | ||
}, | ||
|
Oops, something went wrong.