🐈: change secrets names #3
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: Test Client build | |
on: | |
push: | |
branches: [ "release" ] | |
jobs: | |
prelude: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Environment details | |
run: | | |
echo ${{ secrets.DOCKER_HUB_USERNAME }} | |
echo "PWD: $PWD" | |
echo "GITHUB_REF: $GITHUB_REF" | |
echo "GITHUB_SHA: $GITHUB_SHA" | |
echo "GITHUB_EVENT_NAME: $GITHUB_EVENT_NAME" | |
client-build: | |
needs: | |
- prelude | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: app/client | |
shell: bash | |
steps: | |
# Checkout the code | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: app/client/package.json | |
# Retrieve npm dependencies from cache. After a successful run, these dependencies are cached again | |
- name: Cache npm dependencies | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-yarn-dependencies | |
with: | |
# npm dependencies are stored in `~/.m2` on Linux/macOS | |
path: ~/.npm | |
key: ${{ runner.OS }}-node-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.OS }}-node- | |
${{ runner.OS }}- | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Create the bundle | |
env: | |
REACT_APP_ENVIRONMENT: "PRODUCTION" | |
REACT_APP_FUSIONCHARTS_LICENSE_KEY: "${{ secrets.APPSMITH_FUSIONCHARTS_LICENSE_KEY }}" | |
REACT_APP_SEGMENT_CE_KEY: "${{ secrets.APPSMITH_SEGMENT_CE_KEY }}" | |
REACT_APP_INTERCOM_APP_ID: "${{ secrets.APPSMITH_INTERCOM_ID }}" | |
REACT_APP_VERSION_EDITION: "Community" | |
run: | | |
yarn build | |
ls -l build | |
- name: Pack the client build directory | |
run: | | |
tar -cvf ./build.tar -C build . | |
# Upload the build artifact so that it can be used by the test & deploy job in the workflow | |
- name: Upload react build bundle | |
uses: actions/upload-artifact@v4 | |
with: | |
name: client-build | |
path: app/client/build.tar | |
overwrite: true |