Refactor/remove multi faceted abstraction smell #127
Workflow file for this run
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-build-edge-alpine | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Parse short sha | |
uses: benjlevesque/short-sha@v3.0 | |
id: short-sha | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Build and push image | |
id: docker_build | |
uses: docker/build-push-action@v6 | |
with: | |
push: false | |
file: Dockerfile.alpine | |
tags: 3dcitydb/impexp:edge-alpine | |
build-args: | | |
IMPEXP_VERSION=${{ steps.short-sha.outputs.sha }} | |
- name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} | |
- name: Run container | |
run: docker run -t --rm 3dcitydb/impexp:edge-alpine help | grep -i -E "Usage:" |