diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5d5c3ed3..306438eb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -73,19 +73,19 @@ jobs: if: matrix.os == 'windows-latest' run: | cd target/release - 7z a ../../${{ matrix.name }} ${{ github.event.repository.name }}.exe + 7z a ../../${{ matrix.name }} rnacos.exe cd - - name: Archive binary (linux and macOS) if: ${{ matrix.os != 'windows-latest' && matrix.target !='x86_64-unknown-linux-musl' }} run: | cd target/release - tar czvf ../../${{ matrix.name }} ${{ github.event.repository.name }} + tar czvf ../../${{ matrix.name }} rnacos cd - - name: Archive binary (linux-musl) if: matrix.target =='x86_64-unknown-linux-musl' run: | cd target/x86_64-unknown-linux-musl/release - tar czvf ../../../${{ matrix.name }} ${{ github.event.repository.name }} + tar czvf ../../../${{ matrix.name }} rnacos cd - - name: Upload binary artifacts diff --git a/Dockerfile b/Dockerfile index 687831a3..0ca2c043 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=$BUILDPLATFORM rust:1.72 as builder +FROM --platform=$BUILDPLATFORM rust:latest as builder WORKDIR /usr/src/rnacos COPY . . RUN cargo install --path .