-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 2024-11-12-gui-lib-order-operations
- Loading branch information
Showing
7 changed files
with
632 additions
and
12 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: GitHub Actions Vercel Preview Deployment | ||
env: | ||
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | ||
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | ||
on: | ||
push: | ||
branches-ignore: | ||
- main | ||
jobs: | ||
Deploy-Preview: | ||
runs-on: ubuntu-latest | ||
env: | ||
COMMIT_SHA: ${{ github.sha }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
fetch-depth: 0 | ||
|
||
- uses: DeterminateSystems/nix-installer-action@main | ||
- uses: DeterminateSystems/magic-nix-cache-action@main | ||
|
||
- run: nix develop -c rainix-sol-prelude | ||
working-directory: lib/rain.interpreter | ||
- run: nix develop -c rainix-rs-prelude | ||
working-directory: lib/rain.interpreter | ||
- run: nix develop -c rainix-sol-prelude | ||
working-directory: lib/rain.interpreter/lib/rain.metadata | ||
- run: nix develop -c rainix-rs-prelude | ||
working-directory: lib/rain.interpreter/lib/rain.metadata | ||
- run: nix develop -c rainix-sol-prelude | ||
- run: nix develop -c rainix-rs-prelude | ||
- run: nix develop -c raindex-prelude | ||
- run: nix develop -c npm run build | ||
working-directory: packages/orderbook | ||
- run: nix develop -c npm run build | ||
working-directory: packages/ui-components | ||
- run: nix develop -c npm run build | ||
working-directory: packages/orderbook | ||
- run: nix develop .#webapp-shell -c npm run build | ||
working-directory: packages/webapp | ||
|
||
- name: Install Vercel CLI | ||
run: npm install --global vercel@canary | ||
- name: Pull Vercel Environment Information | ||
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} | ||
- name: Deploy Project Artifacts to Vercel | ||
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }} packages/webapp |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: GitHub Actions Vercel Production Deployment | ||
env: | ||
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | ||
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
Deploy-Preview: | ||
runs-on: ubuntu-latest | ||
env: | ||
COMMIT_SHA: ${{ github.sha }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
fetch-depth: 0 | ||
|
||
- uses: DeterminateSystems/nix-installer-action@main | ||
- uses: DeterminateSystems/magic-nix-cache-action@main | ||
|
||
- run: nix develop -c rainix-sol-prelude | ||
working-directory: lib/rain.interpreter | ||
- run: nix develop -c rainix-rs-prelude | ||
working-directory: lib/rain.interpreter | ||
- run: nix develop -c rainix-sol-prelude | ||
working-directory: lib/rain.interpreter/lib/rain.metadata | ||
- run: nix develop -c rainix-rs-prelude | ||
working-directory: lib/rain.interpreter/lib/rain.metadata | ||
- run: nix develop -c rainix-sol-prelude | ||
- run: nix develop -c rainix-rs-prelude | ||
- run: nix develop -c raindex-prelude | ||
- run: nix develop -c npm run build | ||
working-directory: packages/orderbook | ||
- run: nix develop -c npm run build | ||
working-directory: packages/ui-components | ||
- run: nix develop -c npm run build | ||
working-directory: packages/orderbook | ||
- run: nix develop .#webapp-shell -c npm run build | ||
working-directory: packages/webapp | ||
|
||
- name: Install Vercel CLI | ||
run: npm install --global vercel@canary | ||
- name: Pull Vercel Environment Information | ||
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} | ||
- name: Deploy Project Artifacts to Vercel | ||
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }} packages/webapp |
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
Oops, something went wrong.