ebclfsa-layer: update CMake config files #19
Workflow file for this run
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: Automated build, test and publish image for tag | |
| on: | |
| push: | |
| tags: ["v*.*.*"] | |
| jobs: | |
| build-test-publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Log in to GHCR | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Compare version and tag name | |
| run: | | |
| VERSION=$(yq -r .Version configuration/build_config.yaml) | |
| TAG_NAME=$(echo "${{ github.ref_name }}" | sed 's/refs\/tags\///') | |
| if [ "${VERSION}" != "${TAG_NAME}" ]; then | |
| echo "Version in build_config.yaml (${VERSION}) does not match tag name (${TAG_NAME})" | |
| exit 1 | |
| fi | |
| - name: Setup python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| cache: "pip" | |
| - run: pip install -r requirements.txt | |
| - run: ./builder/build_container | |
| - run: ./tests/run_tests | |
| - run: ./builder/publish_container |