-
Notifications
You must be signed in to change notification settings - Fork 268
chore(ci): dispatch pathfinder-infra version bump on release #3374
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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 }} | ||
| needs: tag-release | ||
| runs-on: ubuntu-latest | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 }} | ||
Uh oh!
There was an error while loading. Please reload this page.