Skip to content

Commit bc1845b

Browse files
committed
Fix
Docker
1 parent 6ce693b commit bc1845b

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/docker.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,13 @@ jobs:
191191
- name: Set up Docker Buildx
192192
uses: docker/setup-buildx-action@v3
193193

194+
- name: Extract Version from package.json
195+
id: extract_version
196+
run: |
197+
VERSION=$(jq -r '.version' ./frontend/package.json)
198+
echo "VERSION=${VERSION}" >> $GITHUB_ENV
199+
echo "Extracted version: ${VERSION}"
200+
194201
- name: Docker meta
195202
id: meta
196203
uses: docker/metadata-action@v5
@@ -204,7 +211,7 @@ jobs:
204211
type=sha,format=short
205212
type=semver,pattern={{version}},event=tag
206213
type=ref,event=tag
207-
type=raw,value=latest,enable={{is_default_branch}}
214+
type=raw,value=${{ env.VERSION }},enable={{is_default_branch}}
208215
209216
- name: Login to Docker Hub
210217
uses: docker/login-action@v3

frontend/src/app/features/block-production/won-slots/table/block-production-won-slots-table.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export class BlockProductionWonSlotsTableComponent extends MinaTableRustWrapper<
3232
{ name: 'status', sort: 'message' },
3333
{ name: 'age', sort: 'slotTime' },
3434
{ name: 'height' },
35-
{ name: 'global slot', sort: 'globalSlot' },
35+
{ name: 'slot in epoch', sort: 'globalSlot' },
3636
{ name: 'transactions', sort: 'transactionsTotal' },
3737
{ name: 'SNARKs', sort: 'completedWorksCount' },
3838
{ name: 'SNARK fees', sort: 'snarkFees' },

0 commit comments

Comments
 (0)