Skip to content

Commit

Permalink
Release ci : fix issue with naming docker archive for the included do…
Browse files Browse the repository at this point in the history
…cker image in electron files
  • Loading branch information
fxi committed Jun 11, 2024
1 parent ef3ea1a commit 08cbbb1
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}

0 comments on commit 08cbbb1

Please sign in to comment.