Skip to content

Commit

Permalink
release docker with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedh committed Mar 18, 2020
1 parent 785b13b commit 89693cb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Expand Up @@ -110,8 +110,8 @@ jobs:
- name: Build Docs
run: |
# build docs in docker image to get working trimesh env for docstrings
docker pull mikedh/trimesh:latest
docker run --rm -v `pwd`:/trimesh mikedh/trimesh:latest python /trimesh/docs/build.py
docker pull trimesh/trimesh:latest
docker run --rm -v `pwd`:/trimesh trimesh/trimesh:latest python /trimesh/docs/build.py
- name: Tag Version
id: set_tag
run: |
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
# put a whole bunch of tags on image:
# tag with version, git sha, and latest
# push to DockerHub and AWS ECR
export TAGS="trimesh/trimesh:latest; trimesh/trimesh:$VERSION; trimesh/trimesh:$GIT_SHORT; $ECR_REGISTRY/$ECR_REPOSITORY:$VERSION; $ECR_REGISTRY/$ECR_REPOSITORY:latest; $ECR_REGISTRY/$ECR_REPOSITORY:$GIT_SHORT"
export TAGS="trimesh/trimesh:latest; trimesh/trimesh:$VERSION; trimesh/trimesh:$GIT_SHORT; mikedh/trimesh:latest; mikedh/trimesh:$VERSION; mikedh/trimesh:$GIT_SHORT; $ECR_REGISTRY/$ECR_REPOSITORY:$VERSION; $ECR_REGISTRY/$ECR_REPOSITORY:latest; $ECR_REGISTRY/$ECR_REPOSITORY:$GIT_SHORT"
# build image tagged with all our many tags
docker build -t `echo "${TAGS//;/$' -t '}"` .
# push every tag to remote registry
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,7 +1,7 @@
[![trimesh](https://trimsh.org/images/logotype-a.svg)](http://trimsh.org)

-----------
[![Build Status](https://travis-ci.org/mikedh/trimesh.svg?branch=master)](https://travis-ci.org/mikedh/trimesh) [![Coverage Status](https://coveralls.io/repos/github/mikedh/trimesh/badge.svg)](https://coveralls.io/github/mikedh/trimesh) [![PyPI version](https://badge.fury.io/py/trimesh.svg)](https://badge.fury.io/py/trimesh) [![CircleCI](https://circleci.com/gh/mikedh/trimesh/tree/master.svg?style=svg)](https://circleci.com/gh/mikedh/trimesh/tree/master) [![Join the chat at https://gitter.im/trimsh/Lobby](https://badges.gitter.im/trimsh/Lobby.svg)](https://gitter.im/trimsh/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Github Actions](https://github.com/mikedh/trimesh/workflows/Run%20Tests/badge.svg)](https://github.com/mikedh/trimesh/actions) [![Coverage Status](https://coveralls.io/repos/github/mikedh/trimesh/badge.svg)](https://coveralls.io/github/mikedh/trimesh) [![PyPI version](https://badge.fury.io/py/trimesh.svg)](https://badge.fury.io/py/trimesh) [![Join the chat at https://gitter.im/trimsh/Lobby](https://badges.gitter.im/trimsh/Lobby.svg)](https://gitter.im/trimsh/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)



Expand Down
2 changes: 1 addition & 1 deletion examples/dockerRender/Dockerfile
@@ -1,4 +1,4 @@
FROM mikedh/trimesh
FROM trimesh/trimesh:latest
MAINTAINER Michael Dawson-Haggerty <mikedh@kerfed.com>

# copy our example file which renders a sphere
Expand Down
2 changes: 1 addition & 1 deletion trimesh/version.py
@@ -1 +1 @@
__version__ = '3.6.8'
__version__ = '3.6.9'

0 comments on commit 89693cb

Please sign in to comment.