Skip to content

Commit

Permalink
Adding "v" to docker image tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit91 committed Aug 7, 2020
1 parent 79569df commit c25eaf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:
python setup.py nosetests
- name: Build Linux
run: |
docker build -f ci-build/Dockerfile . -t metalstack/docker-make:${TAG_NAME}
docker build -f ci-build/Dockerfile . -t metalstack/docker-make:v${TAG_NAME}
docker cp $(docker create $(docker image ls --format '{{ .ID }}' | sed -n 1p)):/docker-make docker-make
md5sum docker-make > docker-make.md5
- name: Publish Dockerfiles
run: |
docker login -u ${{ secrets.DOCKER_HUB_USER }} -p ${{ secrets.DOCKER_HUB_TOKEN }}
docker push metalstack/docker-make:${TAG_NAME}
docker push metalstack/docker-make:v${TAG_NAME}
- name: Create Release
id: create_release
uses: actions/[email protected]
Expand Down

0 comments on commit c25eaf4

Please sign in to comment.