Fix global-to-local appearance converter #119
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/[email protected] | |
id: short-sha | |
- | |
name: Checkout repo | |
uses: actions/[email protected] | |
- | |
name: Build and push image | |
id: docker_build | |
uses: docker/[email protected] | |
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:" |