Skip to content

Commit 14c2997

Browse files
committed
Fix Fedora build paths
1 parent 73a3db1 commit 14c2997

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/package.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -119,16 +119,16 @@ jobs:
119119
120120
- name: Build package
121121
run: |
122-
cd fedora/surface-secureboot
122+
cd fedora
123123
124124
# Build the .rpm packages
125-
../makerpm
125+
./makerpm
126126
127127
- name: Sign packages
128128
env:
129129
GPG_KEY: ${{ secrets.SURFACE_GPG_KEY }}
130130
run: |
131-
cd fedora/surface-secureboot/out/x86_64
131+
cd fedora/out/x86_64
132132
133133
# import GPG key
134134
echo "$GPG_KEY" | base64 -d | gpg --import --no-tty --batch --yes
@@ -140,7 +140,7 @@ jobs:
140140
uses: actions/upload-artifact@v1
141141
with:
142142
name: fedora-31-latest
143-
path: fedora/surface-secureboot/out/noarch
143+
path: fedora/out/noarch
144144

145145
build-f30:
146146
name: Build Fedora 30 package
@@ -158,16 +158,16 @@ jobs:
158158
159159
- name: Build package
160160
run: |
161-
cd fedora/surface-secureboot
161+
cd fedora
162162
163163
# Build the .rpm packages
164-
../makerpm
164+
./makerpm
165165
166166
- name: Sign packages
167167
env:
168168
GPG_KEY: ${{ secrets.SURFACE_GPG_KEY }}
169169
run: |
170-
cd fedora/surface-secureboot/out/x86_64
170+
cd fedora/out/x86_64
171171
172172
# import GPG key
173173
echo "$GPG_KEY" | base64 -d | gpg --import --no-tty --batch --yes
@@ -179,7 +179,7 @@ jobs:
179179
uses: actions/upload-artifact@v1
180180
with:
181181
name: fedora-30-latest
182-
path: fedora/surface-secureboot/out/noarch
182+
path: fedora/out/noarch
183183

184184
release:
185185
name: Publish release

0 commit comments

Comments
 (0)