Draft release #62
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: "Draft release" | |
on: | |
workflow_dispatch: | |
inputs: | |
package: | |
description: 'Package for draft release' | |
required: true | |
default: "webrtc" | |
env: | |
PACKAGE_DIR: ${{ github.event.inputs.package == 'webrtc' && 'js' || github.event.inputs.package }} | |
jobs: | |
build: | |
if: contains(fromJson('["webrtc", "react-client"]'), github.event.inputs.package) | |
name: "@telnyx/${{ github.event.inputs.package }} Draft release" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
# https://github.com/peter-evans/create-pull-request/issues/122 | |
ref: "main" | |
# https://github.com/release-it/release-it/issues/657#issuecomment-647848200 | |
fetch-depth: 0 | |
token: ${{ secrets.DRAFT_RELEASE_TOKEN }} | |
- name: Setup Git user | |
# https://github.com/actions/checkout/issues/13 | |
run: | | |
git config user.name TelnyxIntegrations | |
git config user.email [email protected] | |
- name: Use Node.js 14.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "14.x" | |
cache: 'yarn' | |
registry-url: https://registry.npmjs.org/ | |
- name: Install shared dependencies | |
run: yarn install --frozen-lockfile | |
- name: Install package dependencies | |
working-directory: packages/${{ env.PACKAGE_DIR }} | |
run: yarn install --frozen-lockfile | |
- name: Test | |
working-directory: packages/${{ env.PACKAGE_DIR }} | |
run: yarn test | |
env: | |
CI: true | |
- if: github.event.inputs.package == 'webrtc' | |
name: Generate docs | |
working-directory: packages/${{ env.PACKAGE_DIR }} | |
run: | | |
yarn docs # IDEA Set --gitRevision to release-it tag | |
git add docs | |
git commit -m "docs: update ts docs" || echo "docs: no docs changes to commit" | |
- name: Create draft release | |
working-directory: packages/${{ env.PACKAGE_DIR }} | |
run: | | |
yarn release -- \ | |
--ci \ | |
--github.draft \ | |
--no-npm.publish \ | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_CI_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |