Skip to content

build: Run osmosisd directly #5

build: Run osmosisd directly

build: Run osmosisd directly #5

Workflow file for this run

name: Images
on:
pull_request:
push:
branches: [main]
jobs:
images:
runs-on: ubuntu-latest
concurrency:
group: cosmos-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@v2
with:
tool: [email protected]
- name: Log in to the Container registry
uses: docker/login-action@v3
if: github.ref == 'refs/heads/main'
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build image
run: just build
- name: Push image
if: github.ref == 'refs/heads/main'
run: just push-images