Merge pull request #71 from Deep-Consulting-Solutions/fix-meta-error #117
Workflow file for this run
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
on: | |
push: | |
tags: | |
- v[0-9]+.[0-9]+.[0-9]+ | |
name: Deploy to Amazon ECR in the dev environment | |
permissions: | |
id-token: write | |
contents: read | |
packages: read | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Use Node.js 16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.15.0 | |
# - uses: bahmutov/npm-install@v1 | |
# with: | |
# working-directory: ${{ env.working-directory }} | |
- name: Build nocodb and docker files | |
shell: bash | |
run: | | |
export NODE_OPTIONS="--max_old_space_size=16384" | |
cd packages/nocodb | |
echo $'@Deep-Consulting-Solutions:registry=https://npm.pkg.github.com/\n@deep-consulting-solutions:registry=https://npm.pkg.github.com/\nalways-auth=true\n//npm.pkg.github.com/:_authToken=${{secrets.GITHUB_TOKEN}}' > .npmrc | |
npm install | |
npm run build | |
npm run docker:build | |
docker build --build-arg ACCESS_TOKEN=${{ secrets.GITHUB_TOKEN }} -t "${{ github.ref_name }}" -f ./Dockerfile . | |
- name: push ecr | |
uses: Deep-Consulting-Solutions/ecr-deploy-action@main | |
with: | |
service-key: 'nocodb' | |
account: ${{ secrets.DCS_AWS_ACCOUNT }} | |
source-image: ${{ github.ref_name }} | |
tag: ${{ github.ref_name }} |