Skip to content

Commit

Permalink
Merge pull request #1028 from twilio/FLEXY-5323_testv6
Browse files Browse the repository at this point in the history
FLEXY-5323 v6 test for cheerio fix
  • Loading branch information
hsingla005 authored Aug 16, 2024
2 parents d022c40 + 44e941d commit 362574a
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/manual_alpha_release_v6.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Manual Alpha Release v6

on:
workflow_dispatch:
inputs:
version:
type: choice
description: The Version type for PUBLIC Release
options:
- patch
- minor
- major
required: true

jobs:
release-public-version:
if: github.ref == 'refs/heads/main'
uses: ./.github/workflows/~reusable_public_publish.yaml
with:
TAG: alpha
VERSION: 6.4.2
BRANCH: FLEXY-5323-6.4.2
ENVIRONMENT: alpha_release
secrets:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
SLACK_WEB_HOOK: ${{ secrets.SLACK_WEB_HOOK }}
G_TOKEN: ${{ secrets.GITHUB_TOKEN }}
APP_ID: ${{ secrets.APP_ID }}
APP_KEY: ${{ secrets.APP_KEY }}
56 changes: 56 additions & 0 deletions .github/workflows/manual_public_release_v6.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Manual Public Release v6

on:
workflow_dispatch:
inputs:
version:
type: choice
description: The Version type for PUBLIC Release
options:
- patch
- minor
- major
required: true

jobs:
release-public-version:
if: github.ref == 'refs/heads/main'
uses: ./.github/workflows/~reusable_public_publish.yaml
with:
TAG: public
VERSION: 6.4.2
BRANCH: FLEXY-5323-6.4.2
ENVIRONMENT: public_release
secrets:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
SLACK_WEB_HOOK: ${{ secrets.SLACK_WEB_HOOK }}
G_TOKEN: ${{ secrets.GITHUB_TOKEN }}
APP_ID: ${{ secrets.APP_ID }}
APP_KEY: ${{ secrets.APP_KEY }}

release-tag:
if: github.ref == 'refs/heads/main'
needs: release-public-version
uses: ./.github/workflows/tag.yaml

e2e-node16:
if: github.ref == 'refs/heads/main'
uses: ./.github/workflows/~reusable_e2e.yaml
needs: release-tag
with:
BRANCH: FLEXY-5323-6.4.2
NPM_IGNORE_PREFIX: ${{ vars.NPM_IGNORE_PREFIX }}
PACKAGE_VERSION: 6.4.2
FLEX_UI_VERSION: latest
secrets:
CONSOLE_EMAIL: ${{ secrets.CONSOLE_EMAIL }}
CONSOLE_PASSWORD: ${{ secrets.CONSOLE_PASSWORD }}
CONSOLE_EMAIL_linux: ${{ secrets.CONSOLE_EMAIL_linux }}
TWILIO_ACCOUNT_SID_linux: ${{ secrets.TWILIO_ACCOUNT_SID_linux }}
TWILIO_AUTH_TOKEN_linux: ${{ secrets.TWILIO_AUTH_TOKEN_linux }}
CONSOLE_EMAIL_win32: ${{ secrets.CONSOLE_EMAIL_win32 }}
TWILIO_ACCOUNT_SID_win32: ${{ secrets.TWILIO_ACCOUNT_SID_win32 }}
TWILIO_AUTH_TOKEN_win32: ${{ secrets.TWILIO_AUTH_TOKEN_win32 }}
CONSOLE_EMAIL_darwin: ${{ secrets.CONSOLE_EMAIL_darwin }}
TWILIO_ACCOUNT_SID_darwin: ${{ secrets.TWILIO_ACCOUNT_SID_darwin }}
TWILIO_AUTH_TOKEN_darwin: ${{ secrets.TWILIO_AUTH_TOKEN_darwin }}

0 comments on commit 362574a

Please sign in to comment.