Fix broken action check #62
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 file checks | |
jobs: | |
translation-check: | |
runs-on: ubuntu-latest | |
container: | |
image: archlinux:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pacman --noconfirm -Syu python git | |
- run: | | |
cd .. | |
git clone https://github.com/archlinux/archinstall.git archinstall_master | |
ls -la | |
pwd | |
cd archinstall/archinstall/locales | |
pwd | |
ls -l | |
bash locales_generator.sh | |
cd ../../.. | |
git diff --no-index archinstall_master archinstall |