-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: more monkey patch, don't run the whole heavy bits
- Loading branch information
1 parent
11162e8
commit 3937c63
Showing
1 changed file
with
33 additions
and
31 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 |
---|---|---|
|
@@ -4,8 +4,8 @@ on: | |
# Allows manual triggering if we ever want to | ||
workflow_dispatch: | ||
pull_request: | ||
schedule: | ||
- cron: '0 9 * * 1,4' # Twice a week - 9AM UTC on Monday and Thursday | ||
# schedule: | ||
# - cron: '0 9 * * 1,4' # Twice a week - 9AM UTC on Monday and Thursday | ||
|
||
jobs: | ||
regenerate-and-create-pr: | ||
|
@@ -16,43 +16,45 @@ jobs: | |
with: | ||
ref: feat_attempt_run_ci_regenerate_action | ||
|
||
- name: Setup Node.js environment | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '.nvmrc' | ||
cache: 'yarn' | ||
|
||
- name: Yarn Install | ||
run: yarn install --immutable | ||
|
||
- name: Setup env | ||
run: yarn env dev | ||
|
||
- name: Build Packages | ||
run: yarn build:packages | ||
|
||
- name: Generate CAIP adapters | ||
run: yarn generate:caip-adapters | ||
|
||
# - name: Setup Node.js environment | ||
# uses: actions/setup-node@v3 | ||
# with: | ||
# node-version-file: '.nvmrc' | ||
# cache: 'yarn' | ||
# | ||
# - name: Yarn Install | ||
# run: yarn install --immutable | ||
# | ||
# - name: Setup env | ||
# run: yarn env dev | ||
# | ||
# - name: Build Packages | ||
# run: yarn build:packages | ||
# | ||
# - name: Generate CAIP adapters | ||
# run: yarn generate:caip-adapters | ||
# | ||
# - name: Generate asset data | ||
# env: | ||
# ZERION_API_KEY: ${{ secrets.ZERION_API_KEY }} | ||
# run: yarn run generate:asset-data | ||
|
||
- name: Generate THOR assets | ||
run: yarn run generate:thor-asset-map | ||
|
||
- name: Generate THOR long-tail assets | ||
run: yarn run generate:thor-longtail-tokens | ||
|
||
- name: Generate color map | ||
run: yarn run generate:color-map | ||
|
||
- name: Create new feature branch | ||
run: git checkout -B feat_regenerate_asset_data | ||
# - name: Generate THOR assets | ||
# run: yarn run generate:thor-asset-map | ||
# | ||
# - name: Generate THOR long-tail assets | ||
# run: yarn run generate:thor-longtail-tokens | ||
# | ||
# - name: Generate color map | ||
# run: yarn run generate:color-map | ||
# | ||
# - name: Create new feature branch | ||
# run: git checkout -B feat_regenerate_asset_data | ||
|
||
- name: Commit changes | ||
run: | | ||
# Can't touch this or can we? | ||
touch this | ||
git checkout -B feat_regenerate_asset_data | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
|