Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/post-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ on:
branches:
- 'master'

env:
VERSION: ${{ github.event.inputs.version || 'latest' }}

# touch to trigger
jobs:
cli:
Expand Down Expand Up @@ -78,8 +81,8 @@ jobs:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
run: |
cd packages/cubejs-testing/
npx cubejs-cli@${{ github.event.inputs.version }} create birdbox-test-project -d postgres
export BIRDBOX_CUBEJS_VERSION=${{ github.event.inputs.version }}
npx cubejs-cli@"$VERSION" create birdbox-test-project -d postgres
export BIRDBOX_CUBEJS_VERSION="$VERSION"
yarn run dataset:minimal
yarn run birdbox:cli:postgresql
- name: Slack Failure
Expand Down Expand Up @@ -139,7 +142,7 @@ jobs:
run: |
cd packages/cubejs-testing/
export DEBUG=testcontainers
export BIRDBOX_CUBEJS_VERSION=${{ github.event.inputs.version }}
export BIRDBOX_CUBEJS_VERSION="$VERSION"
yarn run dataset:minimal
yarn run birdbox:${{ matrix.target }}
- name: Slack Failure
Expand Down Expand Up @@ -204,7 +207,7 @@ jobs:
cd packages/cubejs-testing/
export DEBUG=testcontainers
export BIRDBOX_CYPRESS_BROWSER=${{ matrix.browser }}
export BIRDBOX_CUBEJS_VERSION=${{ github.event.inputs.version }}
export BIRDBOX_CUBEJS_VERSION="$VERSION"
yarn run cypress:install
yarn run dataset:minimal
yarn run cypress:birdbox
Expand Down