Skip to content

Commit

Permalink
Merge branch 'main' into state-recovery-v0_3_3
Browse files Browse the repository at this point in the history
  • Loading branch information
jpnovais authored Feb 17, 2025
2 parents dacefd9 + a6fd15e commit e819f63
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/actions/assemble-devnet/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,11 @@ runs:
shell: bash
run: |
mkdir release && cd release
tar -czvf linea-besu-${{ steps.assemble.outputs.dockertag }}.tar.gz ../linea-besu/
tar -czvf linea-besu-${{ steps.dockertag.outputs.dockertag }}.tar.gz ../linea-besu/
echo "# Release Artifact: Linea - devnet" > output.md
echo "linea-besu-${{ steps.assemble.outputs.dockertag }}.tar.gz" >> output.md
echo "SHA256: $(sha256sum linea-besu-${{ steps.assemble.outputs.dockertag }}.tar.gz | awk '{ print $1 }' )" >> output.md
echo "linea-besu-${{ steps.dockertag.outputs.dockertag }}.tar.gz" >> output.md
echo "SHA256: $(sha256sum linea-besu-${{ steps.dockertag.outputs.dockertag }}.tar.gz | awk '{ print $1 }' )" >> output.md
echo "" >> output.md
echo "### Besu and Plugin Details" >> output.md
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/assemble-mainnet/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@ runs:
shell: bash
run: |
mkdir release && cd release
tar -czvf linea-besu-${{ steps.assemble.outputs.dockertag }}.tar.gz ../linea-besu/
tar -czvf linea-besu-${{ steps.dockertag.outputs.dockertag }}.tar.gz ../linea-besu/
echo "# Release Artifact: Linea - Mainnet" > output.md
echo "linea-besu-${{ steps.assemble.outputs.dockertag }}.tar.gz" >> output.md
echo "SHA256: $(sha256sum linea-besu-${{ steps.assemble.outputs.dockertag }}.tar.gz | awk '{ print $1 }' )" >> output.md
echo "linea-besu-${{ steps.dockertag.outputs.dockertag }}.tar.gz" >> output.md
echo "SHA256: $(sha256sum linea-besu-${{ steps.dockertag.outputs.dockertag }}.tar.gz | awk '{ print $1 }' )" >> output.md
echo "" >> output.md
echo "### Besu and Plugin Details" >> output.md
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/assemble-sepolia/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,11 @@ runs:
shell: bash
run: |
mkdir release && cd release
tar -czvf linea-besu-${{ steps.assemble.outputs.dockertag }}.tar.gz ../linea-besu/
tar -czvf linea-besu-${{ steps.dockertag.outputs.dockertag }}.tar.gz ../linea-besu/
echo "# Release Artifact: Linea - Sepolia" > output.md
echo "linea-besu-${{ steps.assemble.outputs.dockertag }}.tar.gz" >> output.md
echo "SHA256: $(sha256sum linea-besu-${{ steps.assemble.outputs.dockertag }}.tar.gz | awk '{ print $1 }' )" >> output.md
echo "linea-besu-${{ steps.dockertag.outputs.dockertag }}.tar.gz" >> output.md
echo "SHA256: $(sha256sum linea-besu-${{ steps.dockertag.outputs.dockertag }}.tar.gz | awk '{ print $1 }' )" >> output.md
echo "" >> output.md
echo "### Besu and Plugin Details" >> output.md
Expand Down
2 changes: 1 addition & 1 deletion versions/linea-ci.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
LINEA_BESU_TAR_GZ=25.2-delivery48
LINEA_BESU_TAR_GZ=25.2-delivery50
LINEA_SEQUENCER_PLUGIN_VERSION=1.2.0-rc3.2
LINEA_TRACER_PLUGIN_VERSION=beta-v1.2.0-rc3
FINALIZED_TAG_UPDATER_PLUGIN_VERSION=0.0.8
Expand Down
2 changes: 1 addition & 1 deletion versions/linea-devnet.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
LINEA_BESU_TAR_GZ=25.2-delivery48
LINEA_BESU_TAR_GZ=25.2-delivery50
LINEA_SEQUENCER_PLUGIN_VERSION=1.2.0-rc3.2
LINEA_TRACER_PLUGIN_VERSION=beta-v1.2.0-rc3
FINALIZED_TAG_UPDATER_PLUGIN_VERSION=0.0.8
Expand Down
2 changes: 1 addition & 1 deletion versions/linea-mainnet.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
LINEA_BESU_TAR_GZ=25.1-delivery43
LINEA_BESU_TAR_GZ=25.2-delivery50
LINEA_SEQUENCER_PLUGIN_VERSION=0.1.4-test40
FINALIZED_TAG_UPDATER_PLUGIN_VERSION=0.0.4
SHOMEI_PLUGIN_VERSION=0.4.0
2 changes: 1 addition & 1 deletion versions/linea-sepolia.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
LINEA_BESU_TAR_GZ=25.2-delivery48
LINEA_BESU_TAR_GZ=25.2-delivery50
LINEA_SEQUENCER_PLUGIN_VERSION=1.2.0-rc3.1
LINEA_TRACER_PLUGIN_VERSION=beta-v1.2.0-rc3
FINALIZED_TAG_UPDATER_PLUGIN_VERSION=0.0.8
Expand Down

0 comments on commit e819f63

Please sign in to comment.