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

Fix incorrect missing run: statement block
This commit is contained in:
Izzie Walton 2024-06-08 11:58:58 -04:00 committed by GitHub
commit bcdc2e8c7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -159,8 +159,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install dependencies
sudo apt-get update
sudo apt-get install --yes gnupg debsigs devscripts
run: |
sudo apt-get update
sudo apt-get install --yes gnupg debsigs devscripts
- name: Docker Build
run: |
docker build -f deployment/Dockerfile.debian -t builddeb --build-arg TAG=${{ matrix.tag }} --build-arg IMG=ubuntu deployment
@ -227,8 +228,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install dependencies
sudo apt-get update
sudo apt-get install --yes gnupg debsigs devscripts
run: |
sudo apt-get update
sudo apt-get install --yes gnupg debsigs devscripts
- name: Docker Build
run: |
docker build -f deployment/Dockerfile.debian -t builddeb --build-arg TAG=${{ matrix.tag }} --build-arg IMG=debian deployment