Skip to content

Commit

Permalink
Setup Suddenly Needs apt-get update
Browse files Browse the repository at this point in the history
  • Loading branch information
oleibman committed Feb 8, 2025
1 parent 5714c8d commit f90b6d6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: actions/checkout@v4

- name: Install locales
run: sudo apt-get install -y language-pack-fr language-pack-de
run: sudo apt-get update && sudo apt-get install -y language-pack-fr language-pack-de

- name: Install single-byte locale
run: sudo sed -i -e 's/# de_DE@euro/de_DE@euro/g' /etc/locale.gen && sudo locale-gen de_DE@euro
Expand Down Expand Up @@ -221,6 +221,12 @@ jobs:
with:
fetch-depth: 0

- name: Install locales
run: sudo apt-get update && sudo apt-get install -y language-pack-fr language-pack-de

- name: Install single-byte locale
run: sudo sed -i -e 's/# de_DE@euro/de_DE@euro/g' /etc/locale.gen && sudo locale-gen de_DE@euro

- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
Expand Down

0 comments on commit f90b6d6

Please sign in to comment.