Skip to content

Commit 37937d8

Browse files
committed
Fix runs-on and path patterns in workflow
Quote path ignore globs and correct runs-on entries. Remove invalid runner keys and a stray spot flag.
1 parent 95c1419 commit 37937d8

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/elf.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77
branches:
88
- main
99
paths-ignore:
10-
- '**/*.pdf'
11-
- '**/*.md'
10+
- "**/*.pdf"
11+
- "**/*.md"
1212
push:
1313
tags:
1414
- v[0-9]+.*
@@ -24,10 +24,8 @@ concurrency:
2424
jobs:
2525
elf:
2626
runs-on:
27-
- runs-on
28-
- runner=ubuntu-latest
27+
- ubuntu-latest
2928
- run-id=${{ github.run_id }}
30-
- spot=false
3129

3230
steps:
3331
- name: Checkout code

0 commit comments

Comments
 (0)