convert search box and results to functional component #4405
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: Deploy TerriaMap | |
on: push | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
- uses: google-github-actions/[email protected] | |
with: | |
service_account_key: ${{ secrets.GCP_CREDENTIALS }} | |
export_default_credentials: true | |
- uses: google-github-actions/[email protected] | |
with: | |
cluster_name: ${{ secrets.GKE_CLUSTER }} | |
location: ${{ secrets.GKE_LOCATION }} | |
- uses: azure/[email protected] | |
with: | |
version: "v3.3.1" | |
- run: bash ./buildprocess/ci-deploy.sh | |
env: | |
NODE_OPTIONS: --max_old_space_size=4096 | |
SHARE_S3_ACCESS_KEY_ID: ${{ secrets.SHARE_S3_ACCESS_KEY_ID }} | |
SHARE_S3_SECRET_ACCESS_KEY: ${{ secrets.SHARE_S3_SECRET_ACCESS_KEY }} | |
FEEDBACK_GITHUB_TOKEN: ${{ secrets.FEEDBACK_GITHUB_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Upload new yarn.lock file (as it may change after `sync-dependencies`) | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: yarn.lock | |
path: yarn.lock |