Roll out next 38.20230902.1.1 #449
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
--- | |
name: Validate | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
permissions: | |
contents: read | |
jobs: | |
validate: | |
name: Validate | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Syntax check | |
run: make syntax-check | |
- name: Check stream generator for dirty working tree | |
run: | | |
set -euo pipefail | |
if jq -r .metadata.generator streams/*.json | grep -- -dirty$; then | |
echo -e "\e[33mfedora-coreos-stream-generator was built with local changes. Please\e[0m" | |
echo -e "\e[33mrebuild it with a clean work tree (you may need to run 'git status' first)\e[0m" | |
echo -e "\e[33mand regenerate the stream metadata.\e[0m" | |
exit 1 | |
fi |