We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 304b93e commit bf639a9Copy full SHA for bf639a9
.github/workflows/release-artifacts.yml
@@ -77,7 +77,16 @@ jobs:
77
- name: Log in to Docker Hub
78
run: docker login -u amithkoujalgi -p ${{ secrets.DOCKERHUB_ACCESS_TOKEN }}
79
80
- - name: Build and push Docker image
+ - name: Build and push Docker image - as tag='latest'
81
+ uses: docker/build-push-action@v5
82
+ if: startsWith(github.ref, 'refs/tags/')
83
+ with:
84
+ context: .
85
+ file: Dockerfile
86
+ push: true
87
+ tags: amithkoujalgi/ollama4j-web-ui:latest
88
+
89
+ - name: Build and push Docker image - as tag with release version number
90
uses: docker/build-push-action@v5
91
if: startsWith(github.ref, 'refs/tags/')
92
with:
0 commit comments