From 08cbbb110e6bdcedff77404bd95193b772a04d6f Mon Sep 17 00:00:00 2001 From: fxi Date: Tue, 11 Jun 2024 21:47:53 +0200 Subject: [PATCH] Release ci : fix issue with naming docker archive for the included docker image in electron files --- .github/workflows/build.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eb4a93b5..9c5b8640 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -177,7 +177,13 @@ jobs: - uses: actions/download-artifact@v4 with: name: accessmod-docker-archive-${{ matrix.arch }} - path: ./electron/resources/docker/ + path: /tmp/ + + - name: Rename downloaded artifact + run: | + mv /tmp/accessmod-docker-${{ matrix.arch }}.tar.gz \ + ./electron/resources/docker/accessmod-docker.tar.gz + shell: bash - name: Use Node.js 18.x uses: actions/setup-node@v4 @@ -244,8 +250,7 @@ jobs: id: create_release uses: softprops/action-gh-release@v1 with: - tag_name: ${{ env.AM_VERSION }} + tag_name: ${{ env.AM_VERSION }} files: accessmod/** body_path: ./release_notes.md token: ${{ secrets.github_token }} -