ci: update script for Debian package build to use latest commit #190
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: Build Docker images | |
on: push | |
jobs: | |
# build_from_download: | |
# runs-on: ubuntu-22.04 | |
# steps: | |
# # Checks-out the repository under $GITHUB_WORKSPACE. | |
# - uses: actions/checkout@v4 | |
# - name: Build Dockerfile_download | |
# run: | | |
# cd docker | |
# docker build . -f Dockerfile_download | |
# build_single_stage: | |
# runs-on: ubuntu-22.04 | |
# steps: | |
# # Checks-out the repository under $GITHUB_WORKSPACE. | |
# - uses: actions/checkout@v4 | |
# - name: Build Dockerfile_build | |
# run: | | |
# cd docker | |
# docker build . -f Dockerfile_build | |
build_multiple_stages: | |
runs-on: ubuntu-22.04 | |
steps: | |
# Checks-out the repository under $GITHUB_WORKSPACE. | |
- uses: actions/checkout@v4 | |
- name: Build Dockerfile_multistage_build | |
run: | | |
cd docker | |
docker build . -f Dockerfile_multistage_build |