Fix build_haos_builder step to fetch the correct version (#3091)

Fixes the build_haos_builder step to fetch the version correctly from the version step, not the (non-existent) version_main step
This commit is contained in:
Tom Pipe 2024-01-19 12:18:03 +00:00 committed by GitHub
parent c210a1a52a
commit ff84663caa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -150,8 +150,8 @@ jobs:
context: . context: .
file: Dockerfile file: Dockerfile
tags: ghcr.io/${{ github.repository_owner }}/haos-builder tags: ghcr.io/${{ github.repository_owner }}/haos-builder
cache-from: ghcr.io/${{ github.repository_owner }}/haos-builder:cache-${{ steps.version_main.outputs.version_main }} cache-from: ghcr.io/${{ github.repository_owner }}/haos-builder:cache-${{ steps.version.outputs.version_main }}
cache-to: ghcr.io/${{ github.repository_owner }}/haos-builder:cache-${{ steps.version_main.outputs.version_main }} cache-to: ghcr.io/${{ github.repository_owner }}/haos-builder:cache-${{ steps.version.outputs.version_main }}
push: true push: true
- name: Generate self-signed certificate - name: Generate self-signed certificate