Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,18 @@ jobs:
- name: Tag image with 'latest'
if: ${{ !github.event.release.prerelease }}
run: docker buildx imagetools create -t eqlabs/pathfinder:latest eqlabs/pathfinder:snapshot-${{ github.sha }}

# Dispatch the version bump workflow on pathfinder-infra
update-infra:
if: ${{ github.event_name == 'release' && !github.event.release.prerelease }}
Comment thread
CHr15F0x marked this conversation as resolved.
needs: tag-release
runs-on: ubuntu-latest
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wonder if there's a smaller image we can use for smth so self-contained like this

Copy link
Copy Markdown
Contributor Author

@zvolin zvolin Apr 30, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if you want, I can just put it as a part of the tag-release job, but this sounded like better separation of concerns. Otherwise there's ubuntu-slim, but I never touched it and honestly, I would just trust in the latest

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no hard feelings tho, can swap if you prefer

steps:
- name: Dispatch pathfinder-infra version bump
env:
GH_TOKEN: ${{ secrets.PATHFINDER_INFRA_DISPATCH_TOKEN }}
run: |
gh workflow run update-pathfinder-version.yml \
--repo equilibriumco/pathfinder-infra \
--ref main \
--field version=${{ github.event.release.tag_name }}
Loading