Skip to content

Merge branch 'main' of github.com:moeen-mahmud/react-native-floating-tab #14

Merge branch 'main' of github.com:moeen-mahmud/react-native-floating-tab

Merge branch 'main' of github.com:moeen-mahmud/react-native-floating-tab #14

Workflow file for this run

name: Release
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: write
pull-requests: write
jobs:
release:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- uses: googleapis/release-please-action@v4
id: release
with:
release-type: "node"
token: ${{ secrets.RELEASE_KEY }}
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: "https://registry.npmjs.org/"
if: ${{ steps.release.outputs.release_created }}
- run: npm ci
if: ${{ steps.release.outputs.release_created }}
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_KEY }}
if: ${{ steps.release.outputs.release_created }}