Skip to content

Commit b78b1e6

Browse files
committed
.github/workflows/genpatch.yml: Add workflow
1 parent b90a64a commit b78b1e6

2 files changed

Lines changed: 23 additions & 1 deletion

File tree

.github/workflows/genpatch.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Generate patch
2+
on:
3+
push:
4+
branches: hdmi_frl
5+
6+
jobs:
7+
generate_patch:
8+
runs-on: ubuntu-24.04
9+
steps:
10+
- name: Checkout repository
11+
uses: actions/checkout@v4
12+
with:
13+
ref: hdmi_frl
14+
fetch-depth: 0
15+
- name: Generate patch
16+
run: git diff master > 0001-amdgpu-frl.patch
17+
- name: Save artifacts
18+
uses: actions/upload-artifact@v4
19+
with:
20+
name: "Patch"
21+
path: 0001-amdgpu-frl.patch
22+
retention-days: 30

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#
1111
# Normal rules (sorted alphabetically)
1212
#
13-
.*
13+
.
1414
*.a
1515
*.asn1.[ch]
1616
*.bin

0 commit comments

Comments
 (0)