fix(ci): change deploy runs-on to ubuntu-latest for reliable label matching
The runner registers with labels [linux, dotnet, node, ubuntu-latest, ...] but did not include 'deploy'. Changed workflow to use the consistently available ubuntu-latest label. Also added 'deploy' label to the runner registration for future compatibility.
This commit is contained in:
@@ -31,7 +31,7 @@ on:
|
||||
jobs:
|
||||
deploy:
|
||||
name: Deploy Nexus
|
||||
runs-on: deploy
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ gitea.event_name != 'workflow_run' || gitea.event.workflow_run.conclusion == 'success' }}
|
||||
steps:
|
||||
- name: Checkout latest code
|
||||
|
||||
Reference in New Issue
Block a user