Skip to content

Commit

Permalink
build: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickDinh committed Mar 26, 2024
1 parent 7cd7094 commit e549adf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/actions/build-linux/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ inputs:
release-version:
description: 'The release version'

env:
ARTIFACT_NAME: algokit-explorer-linux-${{ runner.arch }}
runs:
using: 'composite'
steps:
- name: Set ARTIFACT_NAME env variable
run: echo "ARTIFACT_NAME=algokit-explorer-windows-${{ runner.arch }}" >> $GITHUB_ENV

- name: Install dependencies
run: |
sudo apt-get update
Expand Down
5 changes: 3 additions & 2 deletions .github/actions/build-windows/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ inputs:
release-version:
description: 'The release version'

env:
ARTIFACT_NAME: algokit-explorer-windows-${{ runner.arch }}
runs:
using: 'composite'
steps:
- name: Set ARTIFACT_NAME env variable
run: echo "ARTIFACT_NAME=algokit-explorer-windows-${{ runner.arch }}" >> $GITHUB_ENV

- name: Install dependencies
run: |
sudo apt-get update
Expand Down

0 comments on commit e549adf

Please sign in to comment.