Verify various version related assumptions during CI #101
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: operator | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- operator/** | |
- "!operator/webhook/**" | |
- .github/workflows/operator.yml | |
push: | |
branches: | |
- main | |
paths: | |
- operator/** | |
- "!operator/webhook/**" | |
env: | |
WORKING_DIR: ./operator | |
jobs: | |
verify-versions: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# - run: | | |
# VERSION=$(make --no-print-directory -C operator get-version) | |
# TAG_NAME=$(make --no-print-directory -C operator get-tag) | |
# echo "VERSION=$VERSION" >> "$GITHUB_OUTPUT" | |
# echo "TAG_NAME=$TAG_NAME" >> "$GITHUB_OUTPUT" | |
# cat $GITHUB_OUTPUT | |
# id: naming-selector | |
# name: generate names for artifacts | |
- run: sh .github/workflows/scripts/verify_operator_releasable.sh | |
name: Verify operator is in a state to be released on merge | |
# build: | |
# if: github.ref != 'refs/heads/main' | |
# runs-on: ubuntu-latest | |
# defaults: | |
# run: | |
# shell: bash | |
# working-directory: ${{ env.WORKING_DIR }} | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - run: make prep-release | |
# name: generate release files | |
release: | |
if: github.ref == 'refs/heads/main' | |
needs: verify-versions | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
working-directory: ${{ env.WORKING_DIR }} | |
steps: | |
- uses: actions/checkout@v4 | |
# set variables used by multiple steps in the job | |
- run: | | |
VERSION=$(make get-version) | |
TAG_NAME=$(make get-tag) | |
echo "VERSION=$VERSION" >> "$GITHUB_OUTPUT" | |
echo "TAG_NAME=$TAG_NAME" >> "$GITHUB_OUTPUT" | |
cat $GITHUB_OUTPUT | |
id: naming-selector | |
name: generate names for artifacts | |
- run: | | |
git fetch --tags | |
! git rev-parse -q --verify "refs/tags/${{ steps.naming-selector.outputs.TAG_NAME }}" | |
name: confirm git tag does not exist | |
- run: make prep-release | |
name: generate release files | |
- uses: mathieudutour/[email protected] | |
id: tag_version | |
with: | |
custom_tag: ${{ steps.naming-selector.outputs.TAG_NAME }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
# avoid v prefix before tag | |
tag_prefix: "" | |
- uses: ncipollo/release-action@v1 | |
with: | |
tag: ${{ steps.tag_version.outputs.new_tag }} | |
name: Release ${{ steps.tag_version.outputs.new_tag }} | |
body: ${{ steps.tag_version.outputs.changelog }} | |
artifactErrorsFailBuild: true | |
artifacts: ${{ env.WORKING_DIR }}/output/* |