Skip to content

Commit

Permalink
fix docker version
Browse files Browse the repository at this point in the history
  • Loading branch information
SHildebrandt committed May 23, 2024
1 parent 42b9d7e commit 2c88e98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
env GOOS=windows GOARCH=amd64 go build -ldflags "-w -s" -o logicng-service-win.exe main.go
- name: Build and Push Docker Image
run: |
docker build . -t ghcr.io/booleworks/logicng-service:${{ github.ref }}
docker push ghcr.io/booleworks/logicng-service:${{ github.ref }}
docker build . -t ghcr.io/booleworks/logicng-service:$(echo ${{ github.ref }} | cut -c 2-)
docker push ghcr.io/booleworks/logicng-service:$(echo ${{ github.ref }} | cut -c 2-)
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
Expand Down

0 comments on commit 2c88e98

Please sign in to comment.