Merge pull request #42 from WINOFFRG/migration #48
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: Release | |
on: | |
push: | |
paths: | |
- ".changeset/**" | |
- "packages/**" | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.WINOFFRG_PAT }} | |
- name: Install | |
uses: ./.github/composite-actions/install | |
- name: Build | |
run: pnpm build:package | |
# - name: Generate docs | |
# run: pnpm build:prop-docs | |
- name: Create release Pull Request or publish to NPM | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
publish: pnpm release | |
commit: "ci(changesets): version packages" | |
setupGitUser: false | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# - name: Create @dev release | |
# if: steps.changesets.outputs.published != 'true' | |
# run: | | |
# git checkout main | |
# pnpm version:dev | |
# pnpm release:dev | |
# env: | |
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Update changelog | |
if: steps.changesets.outputs.published == 'true' | |
run: | | |
pnpm changelog:latest | |
pnpm changelog:format | |
pnpm changelog:commit | |
# - name: Slack notification | |
# if: steps.changesets.outputs.published == 'true' | |
# run: pnpm slack | |
# env: | |
# SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
- name: Dispatch update to docs | |
if: steps.changesets.outputs.published == 'true' | |
uses: actions/github-script@v6 | |
with: | |
github-token: ${{ secrets.WINOFFRG_PAT }} | |
script: | | |
await github.rest.actions.createWorkflowDispatch({ | |
owner: 'winoffrg', | |
repo: 'limeplay', | |
workflow_id: 'release.yml', | |
ref: 'main' | |
}) |