From e059c8c089da0f1acc3413d02f32f6f3f4ae0f12 Mon Sep 17 00:00:00 2001 From: "D. Bohdan" Date: Mon, 6 May 2024 10:24:55 +0000 Subject: [PATCH] build: rename `ci.sh` `linux-ci.sh` --- .github/workflows/ci.yml | 2 +- Dockerfile | 2 +- ci.sh => linux-ci.sh | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename ci.sh => linux-ci.sh (100%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a99891b..5dd258b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: - name: Install dependencies run: sudo apt-get update && sudo apt-get install -y libgmp-dev - name: Run CI script - run: ./ci.sh + run: ./linux-ci.sh - name: Add artifact name to env run: | printf \ diff --git a/Dockerfile b/Dockerfile index a68da58..7cae9e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update \ ADD . /build/initool/ WORKDIR /build/initool/ -RUN ./ci.sh +RUN ./linux-ci.sh FROM debian:bookworm-slim RUN mkdir -p /app/initool/ diff --git a/ci.sh b/linux-ci.sh similarity index 100% rename from ci.sh rename to linux-ci.sh