fix: docker build --no-cache
All checks were successful
Release to Gitea Container Registry / build_and_push (push) Successful in 1m14s

This commit is contained in:
Stixx 2024-11-06 19:21:46 +01:00
parent 9a94f6ea33
commit 01f7e499bd

View File

@ -20,10 +20,7 @@ jobs:
password: ${{ secrets.REGISTRY_TOKEN }} # gitea.token doesn't work for push, provide a personal access token
- name: Build Docker image
run: docker build -t git.nostrdev.com/stuff/blossom-cloudron .
- name: Tag Docker image
run: docker tag git.nostrdev.com/stuff/blossom-cloudron:latest git.nostrdev.com/stuff/blossom-cloudron:latest
run: docker build --no-cache -t git.nostrdev.com/stuff/blossom-cloudron .
- name: Push Docker image
run: docker push git.nostrdev.com/stuff/blossom-cloudron