Merge pull request #695 from gundam-organization/nano/resultTablePrin… #259
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: Ubuntu 20 C++14 Docker Image CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- labeled # check for labels | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
# save CPU time on GitHub | |
# either it's a push to main | |
# either ( disable for draft PRs && correctly labeled ) | |
# if: ${{ github.event_name == 'push' || github.event.pull_request.labels.*.name == 'enable workflow' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the Docker image | |
run: docker build . --file Dockerfile --build-arg ROOT_IMAGE=rootproject/root:6.24.06-ubuntu20.04 --tag my-image-name:$(date +%s) |