fix(ci): add missing runs-on attribute

This commit is contained in:
Luke Tainton 2025-01-12 19:57:55 +00:00
parent 8278cfe34a
commit 3fde2411aa
Signed by: luke
SSH Key Fingerprint: SHA256:D34npKT7UaiT/7gULqu7EPSLWWVAjTjXf4kKfJ/fQBo

View File

@ -19,6 +19,7 @@ on:
jobs:
publish:
name: Publish Docker Images
runs-on: ubuntu-latest
needs: create_release
steps:
- name: Update Docker configuration
@ -93,7 +94,7 @@ jobs:
readarray -t lines <<<"$strtags"
for element in "${lines[@]}"; do docker push "$element"; done
unset strtags lines
- name: Set success flag
id: set_flag
run: echo "success=true" >> "$GITEA_OUTPUT"