Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,10 @@ jobs:
path: dist
- id: deployment
uses: actions/deploy-pages@v4
notification:
runs-on: ubuntu-latest
needs: [build-and-deploy]
steps:
- name: Notify
run: |
curl --request POST --url ${{ secrets.DEPLOY_HOOK }} --header 'content-type: application/json' --data '${{ secrets.DEPLOY_MSG }}'
Comment thread
fireheart3911 marked this conversation as resolved.
Outdated
4 changes: 2 additions & 2 deletions src/data/tiers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const TIER_INFO: Record<Tier, TierInfo> = {
drive: 'researchcube:metadata_elaborate',
cube: 'researchcube:cube_precise',
maxRecipes: 12,
color: '#F59E0B',
color: '#8B5CF6',
},
FLAWLESS: {
name: 'FLAWLESS',
Expand All @@ -54,7 +54,7 @@ export const TIER_INFO: Record<Tier, TierInfo> = {
drive: 'researchcube:metadata_cybernetic',
cube: 'researchcube:cube_flawless',
maxRecipes: 16,
color: '#8B5CF6',
color: '#F59E0B',
},
SELF_AWARE: {
name: 'SELF_AWARE',
Expand Down
Loading