Fix broken action check #64
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
paths: | |
- 'archinstall/locales/**' | |
pull_request: | |
paths: | |
- 'archinstall/locales/**' | |
name: Translation files generated from latest master | |
jobs: | |
translation-check: | |
runs-on: ubuntu-latest | |
container: | |
image: archlinux:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pacman --noconfirm -Syu python git | |
- run: | | |
cd .. | |
cp -r archinstall archinstall_orig | |
cd archinstall/archinstall/locales | |
bash locales_generator.sh | |
cd ../../.. | |
diff archinstall_orig archinstall |