add mesa-libGLU-devel #15
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
# if way to detect what file changed, then all actions can go in this file. | |
name: Build rocky8vis image | |
on: | |
registry_package: | |
push: | |
paths: | |
- "sif/rocky8vis.def" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
echo "event name: ${{ github.event_name }}" | |
echo "event name: ${{ github.registry_package }}" | |
echo "event name: ${{ github.registry_package.name }}" | |
build-rocky8vis: | |
if: | | |
( ${{ github.event_name }} == 'registry_package' && ${{ github.registry_package.name == 'rocky8' }} ) || | |
( ${{ github.event_name == 'push' }} ) | |
uses: ./.github/workflows/build.yml | |
with: | |
image-name: rocky8vis |