[ci] feat: try to skip buildcache
All checks were successful
Build and Publish / Build (push) Successful in 9s
Build and Publish / Deployment (push) Successful in 4s

This commit is contained in:
Simon Cornet 2024-09-06 17:53:06 +02:00
parent 9e4ee15d8a
commit e7e438f1a1
2 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ jobs:
- name: 'Build and Publish'
uses: 'docker/build-push-action@v6'
with:
build-args: 'CACHE_DATE=$(`date +%Y-%m-%d:%H:%M:%S`)'
build-args: 'GITEA_SHA=${{ gitea.sha }}'
context: '.'
file: 'Dockerfile.linux.amd64'
push: true

View File

@ -1,8 +1,8 @@
FROM cr.simoncor.net/siempie/hugo-sws:latest
# build cache date argument trick
ARG CACHE_DATE=2017-04-29
RUN echo $CACHE_DATE
ARG GITEA_SHA=some_sha
RUN echo $GITEA_SHA
# clone site and template
RUN set -e \