-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update integrations publish workflow for production (#338)
* Update integrations publish workflow * remove production release from main push * add condition
- Loading branch information
1 parent
1655643
commit a89f395
Showing
7 changed files
with
739 additions
and
222 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/config@2.0.0/schema.json", | ||
"$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json", | ||
"changelog": "@changesets/cli/changelog", | ||
"commit": false, | ||
"fixed": [], | ||
"linked": [], | ||
"access": "public", | ||
"baseBranch": "main", | ||
"updateInternalDependencies": "patch", | ||
"ignore": [] | ||
"ignore": [], | ||
"privatePackages": { | ||
"tag": true, | ||
"version": true | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: Release integration to production | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
deploy-integration-to-production: | ||
if: github.event.release.draft == false && github.event.release.prerelease == false && startsWith(github.event.release.tag_name, '@gitbook/integration-') | ||
name: Deploy integration to production | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Node.js 20.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20.x | ||
|
||
- name: Install Dependencies | ||
# We need to build and then re-install so that the "bin" can be correctly linked | ||
run: | | ||
npm ci | ||
npm run build | ||
npm ci | ||
# TODO: Remove this once we incorporate this in the publish API of the integration | ||
- name: Publish all integrations assets to production | ||
run: npm run publish-assets | ||
env: | ||
CLOUDFLARE_PAGES_PROJECT: ${{ secrets.INTEGRATIONS_ASSETS_PROD_PROJECT }} | ||
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | ||
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_PAGES_API_TOKEN }} | ||
|
||
- name: Deploy integration | ||
run: npm run publish-integrations -- --filter=${{ github.event.release.tag_name }} | ||
env: | ||
GITBOOK_TOKEN: ${{ secrets.GITBOOK_PROD_API_TOKEN }} | ||
GITBOOK_ENDPOINT: https://api.gitbook.com | ||
GITBOOK_ORGANIZATION: gitbook | ||
UNFURL_GITHUB_CLIENT_ID: ${{ secrets.UNFURL_GITHUB_CLIENT_ID }} | ||
UNFURL_GITHUB_CLIENT_SECRET: ${{ secrets.UNFURL_GITHUB_CLIENT_SECRET }} | ||
GITLAB_CLIENT_ID: ${{ secrets.GITLAB_CLIENT_ID }} | ||
GITLAB_CLIENT_SECRET: ${{ secrets.GITLAB_CLIENT_SECRET }} | ||
DISCORD_CLIENT_ID: $ {{ secrets.DISCORD_CLIENT_ID }} | ||
DISCORD_CLIENT_SECRET: $ {{ secrets.DISCORD_CLIENT_SECRET }} | ||
DISCORD_BOT_TOKEN: $ {{ secrets.DISCORD_BOT_TOKEN }} | ||
SLACK_CLIENT_ID: ${{ secrets.SLACK_PROD_CLIENT_ID }} | ||
SLACK_CLIENT_SECRET: ${{ secrets.SLACK_PROD_CLIENT_SECRET }} | ||
SLACK_SIGNING_SECRET: ${{ secrets.SLACK_PROD_SIGNING_SECRET }} | ||
FIGMA_CLIENT_ID: ${{ secrets.FIGMA_PROD_CLIENT_ID }} | ||
FIGMA_CLIENT_SECRET: ${{ secrets.FIGMA_PROD_CLIENT_SECRET }} | ||
MAILCHIMP_CLIENT_ID: ${{ secrets.MAILCHIMP_PROD_CLIENT_ID }} | ||
MAILCHIMP_CLIENT_SECRET: ${{ secrets.MAILCHIMP_PROD_CLIENT_SECRET }} | ||
JIRA_CLIENT_ID: ${{ secrets.JIRA_PROD_CLIENT_ID }} | ||
JIRA_CLIENT_SECRET: ${{ secrets.JIRA_PROD_CLIENT_SECRET }} | ||
LINEAR_CLIENT_ID: ${{ secrets.LINEAR_PROD_CLIENT_ID }} | ||
LINEAR_CLIENT_SECRET: ${{ secrets.LINEAR_PROD_CLIENT_SECRET }} | ||
GITHUB_APP_INSTALL_URL: ${{ secrets.GITBOOK_GITHUB_APP_INSTALL_URL }} | ||
GITHUB_APP_ID: ${{ secrets.GITBOOK_GITHUB_APP_ID }} | ||
GITHUB_CLIENT_ID: ${{ secrets.GITBOOK_GITHUB_CLIENT_ID }} | ||
GITHUB_CLIENT_SECRET: ${{ secrets.GITBOOK_GITHUB_CLIENT_SECRET }} | ||
GITHUB_WEBHOOK_SECRET: ${{ secrets.GITBOOK_GITHUB_WEBHOOK_SECRET }} | ||
GITHUB_PRIVATE_KEY: ${{ secrets.GITBOOK_GITHUB_PRIVATE_KEY }} | ||
GITHUB_ENTITIES_APP_INSTALL_URL: ${{ secrets.ENTITIES_GITHUB_APP_INSTALL_URL }} | ||
GITHUB_ENTITIES_APP_ID: ${{ secrets.ENTITIES_GITHUB_APP_ID }} | ||
GITHUB_ENTITIES_CLIENT_ID: ${{ secrets.ENTITIES_GITHUB_CLIENT_ID }} | ||
GITHUB_ENTITIES_CLIENT_SECRET: ${{ secrets.ENTITIES_GITHUB_CLIENT_SECRET }} | ||
GITHUB_ENTITIES_WEBHOOK_SECRET: ${{ secrets.ENTITIES_GITHUB_WEBHOOK_SECRET }} | ||
GITHUB_ENTITIES_PRIVATE_KEY: ${{ secrets.ENTITIES_GITHUB_PRIVATE_KEY }} |
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
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
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
Oops, something went wrong.