feat(gha): publish developer package #1
Workflow file for this run
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 a developer package to GitHub npm registry" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - issue/2-publish-dev-package # TODO: remove after experiments | |
| permissions: | |
| contents: read | |
| packages: write | |
| jobs: | |
| publish-dev: | |
| uses: ./.github/workflows/publish-package.yml | |
| with: | |
| npm-registry-url: "https://npm.pkg.github.com/" | |
| secrets: | |
| npm-token: ${{ secrets.GITHUB_TOKEN }} |