revert fs_name sibling roms

This commit is contained in:
Georges-Antoine Assi
2026-04-05 17:57:48 -04:00
parent cb96c861a6
commit 7c41fb5bac
7 changed files with 127 additions and 12 deletions

View File

@@ -87,11 +87,13 @@ jobs:
- name: Comment PR with Docker image link
if: github.event_name == 'pull_request'
uses: actions/github-script@v7
env:
HEAD_REF: ${{ github.head_ref }}
with:
script: |
github.rest.issues.updateComment({
comment_id: ${{ steps.build-comment.outputs.comment-id }},
owner: context.repo.owner,
repo: context.repo.repo,
body: `✅ Preview build completed!\n\nDocker image: \`rommapp/romm-testing:${{ github.head_ref }}\``
body: `✅ Preview build completed!\n\nDocker image: \`rommapp/romm-testing:${process.env.HEAD_REF}\``
})