Skip to content

Commit

Permalink
ci(chaosnet): fix docker image build
Browse files Browse the repository at this point in the history
  • Loading branch information
helder-moreira committed Feb 12, 2025
1 parent 1921af9 commit b5e4902
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: Publish Docker Image
name: Chaosnet Docker Image

on:
push:
branches:
- main
tags:
- v*
on: ["push"]
# push:
# branches:
# - main
# tags:
# - v*

jobs:
chaosnet:
runs-on: ubuntu-latest
runs-on: ubuntu-latest-m
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -33,7 +33,7 @@ jobs:

- name: Build and push tagged chaosnet image
uses: docker/build-push-action@v6
if: startsWith(github.ref, 'refs/tags/v')
# if: startsWith(github.ref, 'refs/tags/v')
with:
file: contrib/docker/chaosnet.Dockerfile
context: .
Expand All @@ -43,7 +43,7 @@ jobs:

- name: Build and push latest chaosnet image
uses: docker/build-push-action@v6
if: startsWith(github.ref, 'refs/heads/main')
# if: startsWith(github.ref, 'refs/heads/main')
with:
file: contrib/docker/chaosnet.Dockerfile
context: .
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

- [#2104](https://github.com/NibiruChain/nibiru/pull/2074) - chore: update chain IDs
- [#2206](https://github.com/NibiruChain/nibiru/pull/2206) - ci(chaosnet): fix docker image build

### Nibiru EVM

Expand Down

0 comments on commit b5e4902

Please sign in to comment.