feat: npm workspace publish fix #62
This file contains hidden or 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: Publish | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| env: | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Setup Node | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: '16.x' | |
| scope: '@foo-software' | |
| - name: Install | |
| run: | | |
| npm install --workspaces | |
| # build packages synchronously to ensure sibling dependencies are built. | |
| # @TODO - see if it's possible to do this better | |
| # first build the one that consumed by siblings, then just build all | |
| npm run build --workspace="@foo-software/ghost-graphql" | |
| npm run build --workspaces --if-present | |
| - name: Generate Schema | |
| run: | | |
| node packages/ghost-graphql-ci-tools/dist/bin/config-git.js | |
| node packages/ghost-graphql/dist/bin/generate-schema.js | |
| node packages/ghost-graphql-ci-tools/dist/bin/commit-schema.js | |
| - name: Publish Packages | |
| run: | | |
| node packages/ghost-graphql-ci-tools/dist/bin/publish-packages.js |