-
Notifications
You must be signed in to change notification settings - Fork 15
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
Auto-update Docker image on new bull-arena release #246
Comments
If I'm not wrong, I believe this should be done via GitHub actions. |
Yes, you can change the build action to run on Let me know if you need help with a PR. |
Guide This step should be added in bee-queue/arena at the end of the release workflow. - name: Invoke workflow in another repo
uses: benc-uk/workflow-dispatch@v1
if: steps.commit.outputs.pushed == 'true'
with:
workflow: ${{ secrets.REPO_EVENT }}
repo: ${{ secrets.REPO_NAME }}
token: ${{ secrets.REPO_TOKEN }} Taken from here With secrets:
Conclusion This issue should be moved to the arena repository 🤔 |
As a workaround, one can build the Docker image directly from GitHub: services:
arena:
build: https://github.com/bee-queue/docker-arena.git#071cff0d28c06d2e66b5c11ce7d63125a7de2b1d # PR #244 with a fix for BullMQ
restart: always
depends_on:
- redis
ports:
- 4567:4567
volumes:
- ./arena.json:/opt/arena/index.json |
The current version is almost a year old, would it be possible to auto-update the Docker image on new releases?
The text was updated successfully, but these errors were encountered: