Update keycloak server sample #276
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
# | |
# Checks that the version of the TWA-ViP has been updated. | |
# | |
# Author: Michael Hillman (mdhillman<@>cmcl.io) | |
# | |
name: Check TWA-ViP Version | |
# Trigger this workflow during pull requests to the 'main' branch, | |
# but ONLY when files within the TWA-ViP directory are changed. | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'web/twa-vis-platform/**' | |
- '!web/twa-vis-platform/**/README.md' | |
# Job definitions | |
jobs: | |
# Single job to run script | |
check-version: | |
# Run on latest version of Ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the repository | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
# Run bash script that checks the version | |
- name: Run version check script | |
working-directory: ./ | |
run: | | |
chmod +x ./.github/scripts/twa-vf/check-vip-version.sh | |
./.github/scripts/twa-vf/check-vip-version.sh | |