Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
fix: bit pipeline task (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabio-silva authored Oct 19, 2023
1 parent 86beccb commit bce7d76
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: npm i -g @teambit/bvm

- name: Install latest Bit version
run: bvm install 1.0.0
run: bvm install 1.1.0

- name: Add bvm bin folder to path
run: echo "$HOME/bin" >> $GITHUB_PATH
Expand All @@ -50,10 +50,10 @@ jobs:
run: |
cd ${GITHUB_WORKSPACE}/percona-everest-frontend
bit install --recurring-install
bit snap
bit artifacts percona.apps/everest --out-dir build
bit snap --build
bit artifacts percona.apps/everest --out-dir ./build
mkdir ${GITHUB_WORKSPACE}/front
cp -rf build/percona.apps_everest/artifacts/apps/react-common-js/everest/public/* ${GITHUB_WORKSPACE}/front/
cp -rf ./build/percona.apps_everest/artifacts/apps/react-common-js/everest/public/* ${GITHUB_WORKSPACE}/front/
- name: Check out Everest Backend
uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rc_rebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
run: npm i -g @teambit/bvm

- name: Install latest Bit version
run: bvm install 1.0.0
run: bvm install 1.1.0

- name: Add bvm bin folder to path
run: echo "$HOME/bin" >> $GITHUB_PATH
Expand All @@ -61,10 +61,10 @@ jobs:
run: |
cd ${GITHUB_WORKSPACE}/percona-everest-frontend
bit install --recurring-install
bit snap
bit artifacts percona.apps/everest --out-dir build
bit snap --build
bit artifacts percona.apps/everest --out-dir ./build
mkdir ${GITHUB_WORKSPACE}/front
cp -rf build/percona.apps_everest/artifacts/apps/react-common-js/everest/public/* ${GITHUB_WORKSPACE}/front/
cp -rf ./build/percona.apps_everest/artifacts/apps/react-common-js/everest/public/* ${GITHUB_WORKSPACE}/front/
- name: Build Everest
run: GOOS=linux GOARCH=amd64 make release
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
run: npm i -g @teambit/bvm

- name: Everest Frontend - install latest Bit version
run: bvm install 1.0.0
run: bvm install 1.1.0

- name: Everest Frontend - add bvm bin folder to path
run: echo "$HOME/bin" >> $GITHUB_PATH
Expand All @@ -72,10 +72,10 @@ jobs:
run: |
cd ${GITHUB_WORKSPACE}/percona-everest-frontend
bit install --recurring-install
bit snap
bit artifacts percona.apps/everest --out-dir build
bit snap --build
bit artifacts percona.apps/everest --out-dir ./build
mkdir ${GITHUB_WORKSPACE}/front
cp -rf build/percona.apps_everest/artifacts/apps/react-common-js/everest/public/* ${GITHUB_WORKSPACE}/front/
cp -rf ./build/percona.apps_everest/artifacts/apps/react-common-js/everest/public/* ${GITHUB_WORKSPACE}/front/
- name: Everest Backend - check out
uses: actions/checkout@v4
Expand Down

0 comments on commit bce7d76

Please sign in to comment.