Skip to content

Commit

Permalink
trying out things
Browse files Browse the repository at this point in the history
  • Loading branch information
yashb196 committed Oct 8, 2024
1 parent 19eab0a commit 84fafe1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/lrda_desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@ jobs:
--build-arg NEXT_PUBLIC_OPENAI_API_KEY=${{ secrets.NEXT_PUBLIC_OPENAI_API_KEY }} \
--build-arg NEXT_PUBLIC_OPENAI_API_URL=${{ secrets.NEXT_PUBLIC_OPENAI_API_URL }} \
--build-arg RERUM_PREFIX=${{ secrets.RERUM_PREFIX }} \
-t wheres_religion:${{ github.sha }} .
-t ${{ secrets.DOCKER_USERNAME }}/wheres_religion:${{ github.sha }} .
# Push the image to DockerHub
docker push wheres_religion:${{ github.sha }}
docker push ${{ secrets.DOCKER_USERNAME }}/wheres_religion:${{ github.sha }}
# Optionally, tag and push the 'latest' version of the image
- name: Tag and push latest Docker image
run: |
docker tag wheres_religion:${{ github.sha }} wheres_religion:latest
docker push wheres_religion:latest
docker tag ${{ secrets.DOCKER_USERNAME }}/wheres_religion:${{ github.sha }} ${{ secrets.DOCKER_USERNAME }}/wheres_religion:latest
docker push ${{ secrets.DOCKER_USERNAME }}/wheres_religion:latest

0 comments on commit 84fafe1

Please sign in to comment.