Skip to content
This repository has been archived by the owner on Jul 25, 2024. It is now read-only.

fix: testing

fix: testing #24

Workflow file for this run

name: Release Please
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
jobs:
release-please:
name: "Create release"
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
command: manifest
token: ${{secrets.GITHUB_TOKEN}}
default-branch: main
# The logic below handles the npm publication:
- name: Checkout Repository
uses: actions/checkout@v3
# these if statements ensure that a publication only occurs when
# a new release is created:
if: ${{ steps.release.outputs.releases_created }}
- name: Yarn install
run: yarn install --immutable --immutable-cache
# for security reasons, use --check-cache if accepting PRs from third-parties.
if: ${{ steps.release.outputs.releases_created }}
- name: Publish NPM package ${{ steps.release.outputs.tag_name }}
# run: yarn npm publish
run: yarn nx build sdk-react-provider
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
if: ${{ steps.release.outputs.releases_created }}
outputs:
releases_created: ${{ steps.release.outputs.releases_created }}
tag_name: ${{ steps.release.outputs.tag_name }}
echo:
needs: [release-please]
runs-on: ubuntu-latest
steps:
- name: Debug
run: |
echo '${{ needs.release-please.outputs.releases_created || false }}'
echo '${{ needs.release-please.outputs.tag_name }}'