Fixed build after gitea update

This commit is contained in:
Dreaded_X 2024-07-08 23:13:05 +02:00
parent 526c82096c
commit 5bf6e6bc3c
Signed by: Dreaded_X
GPG Key ID: FA5F485356B0D2D4
2 changed files with 5 additions and 5 deletions

View File

@ -26,7 +26,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: build
name: automation
path: target/x86_64-unknown-linux-gnu/release/automation
container:
@ -41,12 +41,12 @@ jobs:
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: build
name: automation
- name: Set permissions
run: |
chown 65532:65532 ./build/*
chmod 0755 ./build/*
chown 65532:65532 ./automation
chmod 0755 ./automation
- name: Docker meta
id: meta

View File

@ -3,6 +3,6 @@ FROM gcr.io/distroless/cc-debian12:nonroot
ENV AUTOMATION_CONFIG=/app/config.lua
COPY ./config.lua /app/config.lua
COPY ./build/automation /app/automation
COPY ./automation /app/automation
CMD ["/app/automation"]