Publish npm packages nightly #304
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: Publish npm packages nightly | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: 'Nightly branch' | |
required: false | |
default: 'develop' | |
jobs: | |
publish: | |
uses: ./.github/workflows/reusable-release.yml | |
with: | |
release_type: nightly | |
branch: ${{ github.event.inputs.branch || 'develop' }} | |
secrets: inherit |