From c4bb820a5bf4f7adda931f8a5f1481601dd3a77b Mon Sep 17 00:00:00 2001 From: Ynng <44907675+Ynng@users.noreply.github.com> Date: Thu, 20 Jun 2024 23:13:49 -0400 Subject: [PATCH] I can't --- .github/workflows/core-release-docker.yml | 4 ++++ core/githubactions.Dockerfile | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/core-release-docker.yml b/.github/workflows/core-release-docker.yml index 3ef5a031..f9faffe7 100644 --- a/.github/workflows/core-release-docker.yml +++ b/.github/workflows/core-release-docker.yml @@ -58,6 +58,10 @@ jobs: target: core/release/ version: "tags/${{ inputs.version || github.ref_name }}" token: ${{ secrets.GITHUB_TOKEN }} + + - id: tree + name: List files + run: tree . # https://stackoverflow.com/questions/73402042/github-action-expressions-split-string - name: set version string diff --git a/core/githubactions.Dockerfile b/core/githubactions.Dockerfile index 51df6478..1f56169f 100644 --- a/core/githubactions.Dockerfile +++ b/core/githubactions.Dockerfile @@ -1,10 +1,10 @@ FROM ubuntu:22.04 as base FROM base AS production-amd64 -ENV binpath "./core/release/lodestone_core_linux_x86_64_*" +ENV binpath "./release/lodestone_core_linux_x86_64_*" FROM base as production-arm64 -ENV binpath "./core/release/lodestone_core_linux_aarch64_*" +ENV binpath "./release/lodestone_core_linux_aarch64_*" ARG TARGETARCH FROM production-$TARGETARCH AS production