Bump to Fedora 41 and 24-EA to build 22 (see #29) #5
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
name: Check tag synchronization | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v2 | |
- name: Load configuration and versions | |
run: cat version.rc >> "$GITHUB_ENV" | |
- name: Check tag name corresponds to DOCKER_IMAGE_VERSION_TAG | |
shell: bash | |
run: test "refs/tags/$DOCKER_IMAGE_VERSION_TAG" = "${{ github.ref }}" |