Skip to content

Commit 55ebf19

Browse files
authored
build: dev release
2 parents 3ef0608 + c8660b7 commit 55ebf19

File tree

3 files changed

+15
-12
lines changed

3 files changed

+15
-12
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
name: Release Package
2+
23
on:
34
push:
45
branches:
56
- main
7+
- dev
68

79
permissions:
810
contents: read
@@ -15,12 +17,12 @@ jobs:
1517
contents: write
1618
issues: write
1719
pull-requests: write
20+
1821
steps:
1922
- name: Checkout
2023
uses: actions/[email protected]
2124
with:
22-
ref: main
23-
fetch-depth: 0
25+
fetch-depth: 0 # wichtig für semantic-release, damit alle Tags vorhanden sind
2426

2527
- name: Setup
2628
uses: ./.github/actions/setup

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
# react-native-google-maps-plus
22

3-
[![npm version](https://img.shields.io/npm/v/react-native-google-maps-plus.svg)](https://www.npmjs.com/package/react-native-google-maps-plus)
3+
[![npm version](https://img.shields.io/npm/v/react-native-google-maps-plus.svg?logo=npm&color=cb0000)](https://www.npmjs.com/package/react-native-google-maps-plus)
4+
[![Dev Release](https://img.shields.io/npm/v/react-native-google-maps-plus/dev.svg?label=dev%20release&color=orange&logo=githubactions)](https://www.npmjs.com/package/react-native-google-maps-plus)
45
[![Release](https://github.com/pinpong/react-native-google-maps-plus/actions/workflows/release.yml/badge.svg)](https://github.com/pinpong/react-native-google-maps-plus/actions/workflows/release.yml)
5-
[![Issues](https://img.shields.io/github/issues/pinpong/react-native-google-maps-plus)](https://github.com/pinpong/react-native-google-maps-plus/issues)
6-
[![License](https://img.shields.io/github/license/pinpong/react-native-google-maps-plus)](./LICENSE)
7-
[![Code Style: Prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://prettier.io/)
8-
[![TypeScript](https://img.shields.io/badge/%3C/%3E-TypeScript-blue.svg)](https://www.typescriptlang.org/)
9-
[![Lint](https://img.shields.io/badge/lint-eslint-green.svg)](https://eslint.org/)
10-
[![React Native](https://img.shields.io/badge/react--native-%3E%3D0.81.0-61dafb.svg)](https://reactnative.dev/)
11-
[![Platform: Android](https://img.shields.io/badge/platform-android-green.svg)](https://developer.android.com/)
12-
[![Platform: iOS](https://img.shields.io/badge/platform-iOS-lightgrey.svg)](https://developer.apple.com/ios/)
6+
[![Issues](https://img.shields.io/github/issues/pinpong/react-native-google-maps-plus?logo=github)](https://github.com/pinpong/react-native-google-maps-plus/issues)
7+
[![License](https://img.shields.io/github/license/pinpong/react-native-google-maps-plus?logo=open-source-initiative&logoColor=green)](./LICENSE)
8+
[![Code Style: Prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?logo=prettier&logoColor=white)](https://prettier.io/)
9+
[![TypeScript](https://img.shields.io/badge/%3C/%3E-TypeScript-blue.svg?logo=typescript)](https://www.typescriptlang.org/)
10+
[![Lint](https://img.shields.io/badge/lint-eslint-green.svg?logo=eslint&logoColor=white)](https://eslint.org/)
11+
[![React Native](https://img.shields.io/badge/react--native-%3E%3D0.81.0-61dafb.svg?logo=react)](https://reactnative.dev/)
12+
[![Platform: Android](https://img.shields.io/badge/platform-android-green.svg?logo=android&logoColor=white)](https://developer.android.com/)
13+
[![Platform: iOS](https://img.shields.io/badge/platform-iOS-lightgrey.svg?logo=apple&logoColor=black)](https://developer.apple.com/ios/)
1314

1415
React-native wrapper for android & IOS google maps sdk
1516

release.config.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const sortMap = Object.fromEntries(
1515
* @type {import('semantic-release').GlobalConfig}
1616
*/
1717
module.exports = {
18-
branches: ['main', { name: 'next', prerelease: 'next' }],
18+
branches: ['main', { name: 'dev', prerelease: 'dev' }],
1919
plugins: [
2020
[
2121
'@semantic-release/commit-analyzer',

0 commit comments

Comments
 (0)