Skip to content

include short hash in test #17

include short hash in test

include short hash in test #17

Workflow file for this run

name: Testing the CI
on:
push:
branches:
- rp-ci-updates
jobs:
test-docker-master:
uses: ./.github/workflows/ci-docker.yml
with:
dockerhub-username: kavaops
extra-image-tag: master
secrets: inherit
get-git-tag:
runs-on: ubuntu-latest
outputs:
git-tag: ${{ steps.git-tag.outputs.tag }}
steps:
- id: git-tag
# TODO: change me to git command to find version tag
run: echo "tag=v0.25.0" >> $GITHUB_OUTPUT
test-docker-release:
needs: get-git-tag
uses: ./.github/workflows/ci-docker.yml
with:
dockerhub-username: kavaops
extra-image-tag: ${{ needs.get-git-tag.outputs.git-tag }}
secrets: inherit