Skip to content

Commit

Permalink
Update apt index
Browse files Browse the repository at this point in the history
  • Loading branch information
DasSkelett committed Jun 28, 2020
1 parent 13228bd commit eb0cdc5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v2

- name: Install runtime dependencies
run: apt-get install -y libcurl4-openssl-dev xvfb
run: apt-get update && apt-get install -y libcurl4-openssl-dev xvfb
- name: Restore cache for _build/lib/nuget
uses: actions/cache@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v2

- name: Installing runtime dependencies
run: apt-get install -y libcurl4-openssl-dev xvfb
run: apt-get update && apt-get install -y libcurl4-openssl-dev xvfb
- name: Restore cache for _build/lib/nuget
uses: actions/cache@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Installing build dependencies
run: apt-get install -y git make sed libplist-utils xorriso gzip fakeroot lintian rpm
- name: Installing runtime dependencies
run: apt-get install -y libcurl4-openssl-dev xvfb
run: apt-get update && apt-get install -y libcurl4-openssl-dev xvfb

- name: Build dmg
run: ./build osx --configuration=Release
Expand Down

0 comments on commit eb0cdc5

Please sign in to comment.