Skip to content

Commit

Permalink
Fix github ref docker tag
Browse files Browse the repository at this point in the history
  • Loading branch information
yellowmegaman committed Jul 22, 2020
1 parent bec594e commit e923225
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tag.yaml
Expand Up @@ -26,10 +26,10 @@ jobs:
run: make build
- name: pack project
run: |
docker build -t consensus-reports:${{github.ref}} .
docker tag consensus-reports:${{github.ref}} insolar/consensus-reports:${{github.ref}}
docker build -t consensus-reports:$(git describe --tags) .
docker tag consensus-reports:$(git describe --tags) insolar/consensus-reports:$(git describe --tags)
docker login -u ${{secrets.REGISTRY_USERNAME}} -p ${{secrets.REGISTRY_PASSWORD}}
docker push insolar/consensus-reports:${{github.ref}}
docker push insolar/consensus-reports:$(git describe --tags)
- name: create GH release
id: create_release
uses: actions/create-release@becafb2
Expand Down

0 comments on commit e923225

Please sign in to comment.