Fix value sliders to be numeric only text felds #1496
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: Docker-Linux | |
on: | |
push: | |
branches: | |
- master | |
- 'Stable*' | |
tags: | |
- 'v*' | |
paths-ignore: | |
- 'docs/**' # Do not trigger for any changes under docs | |
pull_request: | |
paths: | |
- '.github/workflows/docker-linux.yml' | |
- 'deploy/docker/**' | |
- 'deploy/linux/**' | |
- 'src/**' | |
- 'CMakeLists.txt' | |
- 'cmake/**' | |
# concurrency: | |
# group: ${{ github.workflow }}-${{ github.ref }} | |
# cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-tags: true | |
fetch-depth: 0 | |
- run: chmod a+x ./deploy/docker/run-docker-ubuntu.sh | |
- name: Run Docker Build | |
run: ./deploy/docker/run-docker-ubuntu.sh |