Merge pull request #693 from jellyfin/repo-import-ci

Fix file ownership after build
This commit is contained in:
Izzie Walton 2024-06-11 15:15:08 -04:00 committed by GitHub
commit c9c9506e59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -166,6 +166,7 @@ jobs:
run: |
docker build -f deployment/Dockerfile.debian -t builddeb --build-arg TAG=${{ matrix.tag }} --build-arg IMG=ubuntu deployment
docker run -v $(pwd)/deployment/dist:/dist -v $(pwd):/jellyfin -e TAG=${{ matrix.tag }} -e IMG=ubuntu builddeb
sudo chown --recursive $USER $(pwd)/deployment/dist
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with:
@ -235,6 +236,7 @@ jobs:
run: |
docker build -f deployment/Dockerfile.debian -t builddeb --build-arg TAG=${{ matrix.tag }} --build-arg IMG=debian deployment
docker run -v $(pwd)/deployment/dist:/dist -v $(pwd):/jellyfin -e TAG=${{ matrix.tag }} -e IMG=debian builddeb
sudo chown --recursive $USER $(pwd)/deployment/dist
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with: