Skip to content

Commit

Permalink
turns out job-level env vars are not supported so we're reverting
Browse files Browse the repository at this point in the history
  • Loading branch information
jesseduffield committed Feb 26, 2021
1 parent 256fac5 commit ef7bb27
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,19 @@ jobs:
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
upload_assets:
env:
REPO_NAME: lazycli
needs: create_release
strategy:
matrix:
include:
- os: ubuntu-latest
artifact_name: ${{ env.REPO_NAME }}
asset_name: ${{ env.REPO_NAME }}-linux-x64.tar.gz
artifact_name: lazycli
asset_name: lazycli-linux-x64.tar.gz
- os: macos-latest
artifact_name: ${{ env.REPO_NAME }}
asset_name: ${{ env.REPO_NAME }}-darwin-x64.tar.gz
artifact_name: lazycli
asset_name: lazycli-darwin-x64.tar.gz
- os: windows-latest
artifact_name: ${{ env.REPO_NAME }}.exe
asset_name: ${{ env.REPO_NAME }}-win-x64.tar.gz
artifact_name: lazycli.exe
asset_name: lazycli-win-x64.tar.gz
runs-on: ${{ matrix.os }}
steps:
- name: checkout the source code
Expand Down

0 comments on commit ef7bb27

Please sign in to comment.