-
Notifications
You must be signed in to change notification settings - Fork 378
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: update cryptoassets commit signed via ghcommit
- Loading branch information
1 parent
9253ff0
commit 9772319
Showing
1 changed file
with
10 additions
and
2 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 |
---|---|---|
|
@@ -37,10 +37,18 @@ jobs: | |
run: pnpm build:libs | ||
- name: import CAL tokens | ||
run: pnpm import:cal-tokens | ||
- name: commit new tokens | ||
- name: Add changed files | ||
run: | | ||
git add . | ||
git commit -m 'chore(prerelease) update cryptoassets' || echo "No new tokens added" | ||
- name: commit new tokens | ||
uses: planetscale/[email protected] | ||
with: | ||
commit_message: "chore(prerelease) update cryptoassets" | ||
repo: ${{ github.repository }} | ||
branch: $RELEASE_BRANCH | ||
file_pattern: '*' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: update sortByMarketcap snapshot | ||
run: pnpm common jest --runTestsByPath src/currencies/sortByMarketcap.test.ts -u | ||
- name: commit sortByMarketcap.test.ts | ||
|