Skip to content

Commit

Permalink
Removed envvar from release workflow, cant use in wf inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
atakiya committed Mar 5, 2024
1 parent 39a3bf7 commit 804d6bd
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/create-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ on:
tags: v*
workflow_dispatch:

env:
BINARY_NAME: bvm

jobs:
build:
strategy:
Expand All @@ -27,10 +24,10 @@ jobs:
with:
name: build-${{ matrix.os }}
path: |
target/release/$BINARY_NAME
target/release/$BINARY_NAME-shim
target/release/$BINARY_NAME.exe
target/release/$BINARY_NAME-shim.exe
target/release/bvm
target/release/bvm-shim
target/release/bvm.exe
target/release/bvm-shim.exe
publish:
needs: build
Expand Down Expand Up @@ -71,5 +68,5 @@ jobs:
- uses: shogo82148/actions-upload-release-asset@c91b7fd867cf280772374042252f0dc8e1ade751
name: Upload binaries ⬆️📦
with:
asset_path: ${{ steps.download_artifact.outputs.download-path }}/$BINARY_NAME*
asset_path: ${{ steps.download_artifact.outputs.download-path }}/bvm*
upload_url: ${{ steps.create_release.outputs.upload_url }}

0 comments on commit 804d6bd

Please sign in to comment.