Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
schanzen committed Oct 8, 2021
1 parent 226ea4b commit 2a3c5b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ jobs:
- name: Push release docker image
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
docker tag ghcr.io/fraunhofer-aisec/omejdn-server:dev ghcr.io/fraunhofer-aisec/omejdn-server:$VERSION
docker tag ghcr.io/fraunhofer-aisec/omejdn-server:dev ghcr.io/fraunhofer-aisec/omejdn-server:${{ steps.build_docker.outputs.version }}
docker tag ghcr.io/fraunhofer-aisec/omejdn-server:dev ghcr.io/fraunhofer-aisec/omejdn-server:latest
docker push ghcr.io/fraunhofer-aisec/omejdn-server:$VERSION
docker push ghcr.io/fraunhofer-aisec/omejdn-server:${{ steps.build_docker.outputs.version }}
docker push ghcr.io/fraunhofer-aisec/omejdn-server:latest
if: startsWith(github.ref, 'refs/tags/v')
- name: "Create Release"
Expand Down

0 comments on commit 2a3c5b5

Please sign in to comment.