Skip to content

Commit

Permalink
CI: compiler release workflow - fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
boozook committed Apr 7, 2020
1 parent bc06f81 commit 281b5f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ jobs:
- name: Build
shell: bash
run: cargo build --release -p compiler
run: cargo build --release -p move-lang --bin move-build

- name: Rename artifact
shell: bash
run: mv target/release/compiler movec-${{ runner.os }}
run: mv target/release/move-build movec-${{ runner.os }}

- name: Transfer artifact for next job
uses: actions/upload-artifact@master
Expand Down Expand Up @@ -114,5 +114,5 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: artifacts/movec-macOS
asset_name: movec-${{ steps.version_tag.outputs.value }}-macos
asset_name: movec-${{ steps.version_tag.outputs.value }}-darwin
asset_content_type: application/octet-stream

0 comments on commit 281b5f1

Please sign in to comment.