Skip to content

Jh/bug filter by null (#285) #37

Jh/bug filter by null (#285)

Jh/bug filter by null (#285) #37

on:
workflow_dispatch: # <- this allows triggering from github's UI
push:
branches:
- main
paths:
- '*'
- '.github/workflows/*'
- 'packages/soql-model/**'
name: release-soql-model
jobs:
release-soql-model:
runs-on: ubuntu-latest
steps:
- uses: GoogleCloudPlatform/release-please-action@v4
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
path: packages/soql-model
monorepo-tags: true
default-branch: main
- run: |
echo 'Release outputs:${{ toJSON(steps.release.outputs) }}'
# Case 1:
# If this is not the result of a Release PR merge, then update version
# of internal dependencies on the release branch
- uses: actions/checkout@v2
if: ${{ ! steps.release.outputs.release_created }}
- name: bump-inter-dependencies-on-release-branch
if: ${{ ! steps.release.outputs.release_created }}
run: ./scripts/gh-action-bump-interdeps-versions-on-release-branch.sh soql-model
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Case 2:
# If this IS the result of a Release PR merge into main, then proceed to publish
# the npm package
- uses: actions/checkout@v2
if: ${{ steps.release.outputs.release_created }}
- uses: actions/setup-node@v2
if: ${{ steps.release.outputs.release_created }}
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
scope: '@salesforce'
- name: build
if: ${{ steps.release.outputs.release_created }}
run: |
yarn
yarn build
- name: publish
if: ${{ steps.release.outputs.release_created }}
run: |
cd packages/soql-model
npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}