-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: move deployables into deployables subdirectory (#475)
* chore: move deployables into deployables subdirectory * update lockfile * merge vscode settings * adjust another path
- Loading branch information
1 parent
798e1ad
commit d55330c
Showing
459 changed files
with
64 additions
and
308 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,7 @@ | |
"Delegatecall", | ||
"delegatecalls", | ||
"depay", | ||
"deployables", | ||
"esbuild", | ||
"ethersproject", | ||
"extralight", | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
|
||
defaults: | ||
run: | ||
working-directory: ./app | ||
working-directory: ./deployables/app | ||
|
||
jobs: | ||
deploy: | ||
|
@@ -24,7 +24,7 @@ jobs: | |
- name: Deploy | ||
uses: cloudflare/[email protected] | ||
with: | ||
workingDirectory: app | ||
workingDirectory: deployables/app | ||
apiToken: ${{ secrets.CF_API_TOKEN }} | ||
accountId: ${{ secrets.CF_ACCOUNT_ID }} | ||
command: versions upload |
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 |
---|---|---|
|
@@ -3,11 +3,11 @@ name: Deploy Fork API | |
on: | ||
push: | ||
branches: main | ||
paths: ['fork-api/**', '**/fork-api-release.yaml'] | ||
paths: ['deployables/fork-api/**', '**/fork-api-release.yaml'] | ||
|
||
defaults: | ||
run: | ||
working-directory: ./fork-api | ||
working-directory: ./deployables/fork-api | ||
|
||
jobs: | ||
deploy: | ||
|
@@ -25,7 +25,7 @@ jobs: | |
- name: Publish | ||
uses: cloudflare/[email protected] | ||
with: | ||
workingDirectory: fork-api | ||
workingDirectory: deployables/fork-api | ||
apiToken: ${{ secrets.CF_API_TOKEN }} | ||
secrets: | | ||
TENDERLY_ACCESS_KEY | ||
|
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 |
---|---|---|
|
@@ -10,15 +10,15 @@ jobs: | |
name: Build Extension | ||
defaults: | ||
run: | ||
working-directory: ./extension | ||
working-directory: ./deployables/extension | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: latest | ||
cache: "pnpm" | ||
cache-dependency-path: "**/pnpm-lock.yaml" | ||
cache: 'pnpm' | ||
cache-dependency-path: '**/pnpm-lock.yaml' | ||
|
||
- name: Install deps and build | ||
run: | | ||
|
@@ -36,12 +36,12 @@ jobs: | |
- name: Add zip to Github release | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
files: ./extension/zodiac-pilot.zip | ||
files: ./deployables/extension/zodiac-pilot.zip | ||
|
||
- name: Upload & release to Chrome Webstore | ||
uses: mnao305/[email protected] | ||
with: | ||
file-path: ./extension/zodiac-pilot.zip | ||
file-path: ./deployables/extension/zodiac-pilot.zip | ||
extension-id: jklckajipokenkbbodifahogmidkekcb | ||
client-id: ${{ secrets.CHROME_WEBSTORE_CLIENT_ID }} | ||
client-secret: ${{ secrets.CHROME_WEBSTORE_CLIENT_SECRET }} | ||
|
@@ -50,38 +50,3 @@ jobs: | |
|
||
- run: mkdir ./release | ||
- run: mv ./zodiac-pilot.zip ./release/zodiac-pilot.zip | ||
|
||
# - name: Pin to IPFS | ||
# id: upload | ||
# uses: anantaramdas/ipfs-pinata-deploy-action@39bbda1ce1fe24c69c6f57861b8038278d53688d | ||
# with: | ||
# pin-name: Zodiac Pilot Chrome Extension ${{ github.event.release.tag_name }} | ||
# path: "./extension/release" | ||
# pinata-api-key: ${{ secrets.PINATA_API_KEY }} | ||
# pinata-secret-api-key: ${{ secrets.PINATA_API_SECRET_KEY }} | ||
|
||
# - name: Convert CIDv0 to CIDv1 | ||
# id: convert_cidv0 | ||
# uses: uniswap/[email protected] | ||
# with: | ||
# cidv0: ${{ steps.upload.outputs.hash }} | ||
|
||
# - name: Add IPFS links to Github release notes | ||
# id: update_release | ||
# uses: tubone24/[email protected] | ||
# env: | ||
# GITHUB_TOKEN: ${{ github.token }} | ||
# with: | ||
# is_append_body: true | ||
# body: | | ||
# <br /> | ||
# This extension will be available in the Chrome Extension store, or you can download it from IPFS, extract it and run it as an unpacked extension. | ||
|
||
# IPFS hash of the extension zip file: | ||
# - CIDv0: `${{ steps.upload.outputs.hash }}` | ||
# - CIDv1: `${{ steps.convert_cidv0.outputs.cidv1 }}` | ||
|
||
# IPFS gateways: | ||
# - https://gnosis.mypinata.cloud/ipfs/${{ steps.upload.outputs.hash }} | ||
# - https://${{ steps.convert_cidv0.outputs.cidv1 }}.ipfs.dweb.link/ | ||
# - https://${{ steps.convert_cidv0.outputs.cidv1 }}.ipfs.cf-ipfs.com/ |
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 |
---|---|---|
|
@@ -3,11 +3,11 @@ name: Deploy Vnet API | |
on: | ||
push: | ||
branches: main | ||
paths: ['vnet-api/**', '**/vnet-api-release.yaml'] | ||
paths: ['deployables/vnet-api/**', '**/vnet-api-release.yaml'] | ||
|
||
defaults: | ||
run: | ||
working-directory: ./vnet-api | ||
working-directory: ./deployables/vnet-api | ||
|
||
jobs: | ||
deploy: | ||
|
@@ -25,7 +25,7 @@ jobs: | |
- name: Publish | ||
uses: cloudflare/[email protected] | ||
with: | ||
workingDirectory: vnet-api | ||
workingDirectory: deployables/vnet-api | ||
apiToken: ${{ secrets.CF_API_TOKEN }} | ||
secrets: | | ||
TENDERLY_ACCESS_KEY | ||
|
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
playwright-report | ||
package.json | ||
.react-router | ||
|
||
*.db | ||
*.zip | ||
|
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 |
---|---|---|
@@ -1,3 +1,14 @@ | ||
{ | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"typescript.enablePromptUseWorkspaceTsdk": true, | ||
"search.exclude": { | ||
"node_modules": true, | ||
"public/build": true | ||
}, | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": "explicit" | ||
}, | ||
"editor.formatOnSave": true, | ||
"cSpell.userWords": [], // only use words from .cspell.json | ||
"cSpell.enabled": true | ||
} |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.