This repository has been archived by the owner on Jul 25, 2024. It is now read-only.
fix: version #62
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
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 | |
with: | |
# We need to fetch all branches and commits so that Nx affected has a base to compare against. | |
fetch-depth: 0 | |
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: Derive appropriate SHAs for base and head for `nx affected` commands | |
uses: nrwl/nx-set-shas@v3 | |
with: | |
main-branch-name: ${{ env.BASE }} | |
- 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 nx affected -t build --base=${{ env.NX_BASE }} --head=${{ env.NX_HEAD }} | |
- run: echo "Release ${{ steps.release.outputs['libs/sdk--tag_name'] }} created for sdk." | |
if: ${{ steps.release.outputs['libs/sdk--release_created'] }} | |
# Conditionally publish packages based on changes in their respective dist directories | |
# - name: Publish NPM package ${{ steps.release.outputs.tag_name }} | |
# run: yarn nx affected -t publish --base=${{ env.NX_BASE }} --head=${{ env.NX_HEAD }} | |
# env: | |
# NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
# if: ${{ steps.release.outputs.releases_created }} | |
- name: Debug | |
run: | | |
echo '${{ steps.release.outputs.tag_name }}' | |
echo '${{ steps.release.outputs.releases_created || false }}' | |
echo '${{ toJson(steps.release.outputs) }}' | |
echo '${{ steps.release.outputs.pr-branch }}' | |
echo '${{ steps.release.outputs.pr }}' | |
echo '${{ steps.release.outputs.sha }}' | |
outputs: | |
releases_created: ${{ steps.release.outputs.releases_created }} | |
tag_name: ${{ steps.release.outputs.tag_name }} | |
package_names: ${{ steps.get-package-names.outputs.package_names }} | |
echo: | |
needs: [release-please] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Debug | |
run: | | |
echo '${{ needs.release-please.outputs.releases_created || false }}' |