Update supported OCP versions (#548) #1491
This file contains hidden or 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: CI | |
| on: push | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Test and Publish | |
| env: | |
| GH_NAME: ${{ secrets.GH_NAME }} | |
| GH_EMAIL: ${{ secrets.GH_EMAIL }} | |
| GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
| run: | | |
| docker run -eBRANCH="${GITHUB_REF##*/}" -eGH_NAME -eGH_EMAIL -eGH_TOKEN --network host -i --volume $PWD:/docs:z --workdir /docs quay.io/fedora/fedora:37-x86_64 /bin/bash -c './build_tools/ci.sh' |