mirror of
https://github.com/dat515-2025/Group-8.git
synced 2026-03-22 15:12:08 +01:00
fix(infrastructure): use correct runner
This commit is contained in:
6
.github/workflows/url_generator.yml
vendored
6
.github/workflows/url_generator.yml
vendored
@@ -10,10 +10,14 @@ on:
|
||||
description: 'PR number (required when mode=pr)'
|
||||
required: false
|
||||
type: string
|
||||
runner:
|
||||
description: 'Runner to use (default: ubuntu-latest)'
|
||||
required: false
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
get_urls:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ${{inputs.runner || 'ubuntu-latest'}}
|
||||
outputs:
|
||||
backend_url: ${{ steps.urls.outputs.backend_url }}
|
||||
frontend_url: ${{ steps.urls.outputs.frontend_url }}
|
||||
|
||||
Reference in New Issue
Block a user