Compare commits

..

No commits in common. "c8a34ee7608f2cd295ecd0f6ac8db622d9b87dce" and "d4bd0ef1cac256e9e9202570e33ce6216cfb1d2e" have entirely different histories.

4 changed files with 4 additions and 8 deletions

View File

@ -1,2 +0,0 @@
[env]
RUSTC_BOOTSTRAP = "1"

View File

@ -79,11 +79,11 @@ jobs:
- name: Push manifests
run: |
flux push artifact oci://${{ env.OCI_REPO }}/manifests:${{ gitea.head_ref || gitea.ref_name }} \
flux push artifact oci://$OCI_REPO/manifests:${{ gitea.head_ref || gitea.ref_name }} \
--path="./manifests.yaml" \
--source="$(git config --get remote.origin.url)" \
--revision="$(git rev-parse HEAD)" \
$(echo "${{ steps.meta.outputs.labels }}" | sed -e 's/^/-a /')
flux tag artifact oci://${{ env.OCI_REPO }}/manifests:${{ gitea.head_ref || gitea.ref_name }} \
flux tag artifact oci://$OCI_REPO/manifests:${{ gitea.head_ref || gitea.ref_name }} \
$(echo "${{ steps.meta.outputs.tags }}" | sed -e 's/^.*:/--tag /')

View File

@ -16,6 +16,8 @@ RUN cargo chef cook --release --recipe-path recipe.json
COPY . .
ARG RELEASE_VERSION
ENV RELEASE_VERSION=${RELEASE_VERSION}
# HACK: Enable the use of features on stable
ENV RUSTC_BOOTSTRAP=1
RUN cargo auditable build --release
FROM gcr.io/distroless/cc-debian12:nonroot AS runtime

View File

@ -1,4 +0,0 @@
[toolchain]
channel = "1.85"
profile = "default"
components = ["rust-analyzer"]