Skip to content

Commit

Permalink
Merge branch 'rc/v1.7.next1' into token-type-altered-accounts
Browse files Browse the repository at this point in the history
  • Loading branch information
miiu96 authored Jul 2, 2024
2 parents 654852c + c183ef0 commit 647e230
Show file tree
Hide file tree
Showing 7 changed files with 1,779 additions and 5 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/docker-keygenerator.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Build & push keygenerator docker image

on:
workflow_dispatch:
pull_request:

jobs:
build-docker-image:
strategy:
matrix:
runs-on: [ubuntu-latest]
runs-on: ${{ matrix.runs-on }}

steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Log into Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push image to Docker Hub
id: push
uses: docker/build-push-action@v6
with:
context: .
file: ./docker/keygenerator/Dockerfile
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: multiversx/chain-keygenerator:latest
2 changes: 1 addition & 1 deletion cmd/node/config/enableEpochs.toml
Original file line number Diff line number Diff line change
Expand Up @@ -338,5 +338,5 @@
[GasSchedule]
# GasScheduleByEpochs holds the configuration for the gas schedule that will be applied from specific epochs
GasScheduleByEpochs = [
{ StartEpoch = 0, FileName = "gasScheduleV7.toml" },
{ StartEpoch = 0, FileName = "gasScheduleV8.toml" },
]
Loading

0 comments on commit 647e230

Please sign in to comment.