Hey all.
I started using the resize_image shortcode in my blog.
Is all good until I try to deploy using GitHub Actions, into a AWS S3 bucket.
Run ./zola build
Building site...
Failed to build the site
Error: Failed to render content of /home/runner/work/website/website/content/blog/performance-testing-101/index.md
Reason: Failed to render resize_image shortcode
Reason: Failed to render 'shortcodes/resize_image.html'
Reason: Variable `image.url` not found in context while rendering 'shortcodes/resize_image.html'
Error: Process completed with exit code 1.
This is the shortcode
{% set image = resize_image(path=path, width=width, height=height, op=op) %}
<img src="{{image.url}}" class="{{class}}"/>
And using build locally creates the img element like this
<img src="https://mysite.com/processed_images/9f66a5fa8329559b00.jpg" class="post_std-image-float"/>