Skip to content

Commit

Permalink
Merge pull request #692 from jellyfin/repo-import-ci
Browse files Browse the repository at this point in the history
Fix incorrect missing run: statement block
  • Loading branch information
iwalton3 authored Jun 8, 2024
2 parents e8bf83a + ef410ea commit bcdc2e8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit bcdc2e8

Please sign in to comment.