Skip to content

Commit

Permalink
fix(ci): revert incorrect RUNNER_OS and url vars
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoomen committed Oct 23, 2020
1 parent e2e8a6f commit 123a3c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/beta-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
runs-on : ${{ matrix.os }}
env:
NODE_VERSION: 14
TARGET: $(echo ${{ env.RUNNER_OS }} | tr '[:upper:]' '[:lower:]')
ASSET_FILENAME: vim-doge-$(echo ${{ env.RUNNER_OS }} | tr '[:upper:]' '[:lower:]')
TARGET: $(echo $RUNNER_OS | tr '[:upper:]' '[:lower:]')
ASSET_FILENAME: vim-doge-$(echo $RUNNER_OS | tr '[:upper:]' '[:lower:]')
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand All @@ -63,7 +63,7 @@ jobs:
id: release_info
run: |
url=$(cat release_url/release_url.txt)
echo ::set-output name=upload_url::${{ env.url }}
echo ::set-output name=upload_url::$url
echo ::set-output name=asset_path::./bin/${{ env.ASSET_FILENAME }}.tar.gz
echo ::set-output name=asset_name::${{ env.ASSET_FILENAME }}.tar.gz
Expand Down

0 comments on commit 123a3c6

Please sign in to comment.