initial commit #1
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 Image | |
# yamllint disable-line rule:truthy | |
on: [push, pull_request] | |
jobs: | |
build-docker: | |
name: "Build Docker Image" | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Docker Image | |
run: | | |
docker build \ | |
--build-arg CONTAINER \ | |
--build-arg VERSION \ | |
-t sdk \ | |
. | |
env: | |
# Utilize matrix with release-versions once available | |
VERSION: master | |
shell: bash |