This repository was archived by the owner on Jan 12, 2026. It is now read-only.
docs: add wizarding documentation (#1699) #84
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
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| name: release-please | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: googleapis/release-please-action@v4 | |
| id: release | |
| with: | |
| release-type: node | |
| command: manifest | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| # The logic below handles the npm publication: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: "true" | |
| if: ${{ steps.release.outputs.release_created }} | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20.x" | |
| registry-url: "https://registry.npmjs.org" | |
| if: ${{ steps.release.outputs.release_created }} | |
| - run: npm ci --include=optional | |
| if: ${{ steps.release.outputs.release_created }} | |
| - run: npm run build | |
| if: ${{ steps.release.outputs.release_created }} | |
| - run: cd packages/core && npm publish --access public | |
| env: | |
| NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
| if: ${{ steps.release.outputs.release_created }} | |
| continue-on-error: true | |
| - name: Create and Zip Build Assets | |
| if: ${{ steps.release.outputs.release_created }} | |
| run: | | |
| zip -r open-scd.zip ./packages/distribution/build/ | |
| tar -czvf open-scd.tar.gz ./packages/distribution/build/ | |
| - name: Upload Build Assets | |
| if: ${{ steps.release.outputs.release_created }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: gh release upload ${{ steps.release.outputs.tag_name }} open-scd.zip open-scd.tar.gz |