Skip to content

Commit 42104f3

Browse files
committed
github: fix ln msgdef generation
1 parent 4dd375a commit 42104f3

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build-ln-msgdef-deb.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: git config --global --add safe.directory $GITHUB_WORKSPACE
5555

5656
- name: Build .deb package
57-
working-directory: ${{ github.workspace }}/share/service_definitions
57+
working-directory: ${{ github.workspace }}/share/pd_definitions
5858
shell: bash
5959
run: |
6060
# baue mit dpkg-buildpackage (ohne signieren)
@@ -86,19 +86,19 @@ jobs:
8686
dpkg-buildpackage -us -uc -sa
8787
8888
- name: Debug artifact files
89-
working-directory: ${{ github.workspace }}/share/service_definitions
89+
working-directory: ${{ github.workspace }}/share/pd_definitions
9090
run: |
9191
ls -l ../
9292
9393
- name: Set sanitized image name
94-
working-directory: ${{ github.workspace }}/share/service_definitions
94+
working-directory: ${{ github.workspace }}/share/pd_definitions
9595
id: sanitize
9696
run: |
9797
version=$(dpkg-parsechangelog | sed -n 's/^Version: //p')
9898
echo "sanitized_image=$(echo "${version}" | tr '/:' '--')" >> $GITHUB_OUTPUT
9999
100100
- name: Upload to APT repository
101-
working-directory: ${{ github.workspace }}/share/service_definitions
101+
working-directory: ${{ github.workspace }}/share/pd_definitions
102102
env:
103103
DEPLOY_TOKEN: ${{ secrets.BS_UPLOAD_KEY }}
104104
shell: bash
@@ -127,7 +127,7 @@ jobs:
127127
-F "source=@$TAR_FILE"
128128
129129
- name: Collect .deb artifact
130-
working-directory: ${{ github.workspace }}/share/service_definitions
130+
working-directory: ${{ github.workspace }}/share/pd_definitions
131131
run: |
132132
mkdir -p artifacts/
133133
rsync -av --include="*.deb" --include="*.changes" --include="*.buildinfo" --include="*.dsc" --include="*.tar.gz" --exclude="*" ../ artifacts/
@@ -136,11 +136,11 @@ jobs:
136136
uses: actions/upload-artifact@v7
137137
with:
138138
name: ${{ env.PKGNAME }}-artifacts-${{ steps.sanitize.outputs.sanitized_image }}
139-
path: share/service_definitions/artifacts/
139+
path: share/pd_definitions/artifacts/
140140

141141
# Fetch the release upload URL dynamically on tag builds
142142
- name: Upload all artifacts to Release
143-
working-directory: ${{ github.workspace }}/share/service_definitions
143+
working-directory: ${{ github.workspace }}/share/pd_definitions
144144
if: startsWith(github.ref, 'refs/tags/')
145145
env:
146146
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)