Publish a Release #169
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
# TODO move this run to buildkite | |
name: Publish a Release | |
on: | |
workflow_dispatch: | |
branches: | |
- main | |
env: | |
ECH_NODE_VERSION: '20.11.1' | |
jobs: | |
checks: | |
name: Release Checks | |
runs-on: ubuntu-latest | |
# needs: status # Not working atm | |
# Runs checks when others running on main may be in process | |
# This is likely an edge case unless published shortly following a merge | |
# This also covers a case where main checks did not complete/succeed | |
# if: needs.status.outputs.allSuccess | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ env.ECH_NODE_VERSION }} | |
# TODO: fix unnecessary yarn installs | |
- name: Install node_modules | |
uses: bahmutov/npm-install@v1 | |
with: | |
useRollingCache: true | |
- name: Install e2e node_modules | |
uses: bahmutov/npm-install@v1 | |
with: | |
working-directory: e2e | |
useRollingCache: true | |
- name: Install e2e node_modules | |
uses: bahmutov/npm-install@v1 | |
with: | |
working-directory: .buildkite | |
useRollingCache: true | |
- name: Install e2e node_modules | |
uses: bahmutov/npm-install@v1 | |
with: | |
working-directory: github_bot | |
useRollingCache: true | |
# TODO: fix this to avoid requiring build to run linting | |
# currently the storybook and others are loosely coupled to @elastic/charts/src | |
# such that types point to the local source and not a packaged release | |
- name: Build charts typescript lib | |
run: yarn build:ts | |
- name: Lint check | |
run: yarn lint | |
- name: Prettier check | |
run: yarn prettier:check | |
- name: TimeZone testing | |
run: yarn test:tz --ci | |
- name: Testing | |
run: yarn test --ci | |
release: | |
name: Release | |
needs: [checks] | |
if: ${{ needs.checks.result == 'success' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ env.ECH_NODE_VERSION }} | |
- name: Install node_modules | |
uses: bahmutov/npm-install@v1 | |
with: | |
useRollingCache: true | |
- name: Build library | |
run: yarn build | |
- name: Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.ADMIN_TOKEN_GH }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
run: yarn semantic-release |