added point and curve style settings for furniture and vegetation #133
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 | |
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/checkout@v4 | |
- name: Build and push image | |
id: docker_build | |
uses: docker/build-push-action@v6 | |
with: | |
push: false | |
tags: 3dcitydb/impexp:edge | |
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 help | grep -i -E "Usage:" |