8000 remove renaming binary by martintc · Pull Request #373 · comtrya/comtrya · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

remove renaming binary #373

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/main2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,18 +125,18 @@ jobs:
target: ${{ matrix.platform.target }}
toolchain: stable
args: "--release"

- name: Rename Binary
if: matrix.platform.target != 'x86_64-pc-windows-msvc'
shell: bash
run: |
mv target/release/comtrya ${{ matrix.platform.name }}

- name: Rename Binary.exe
if: matrix.platform.target == 'x86_64-pc-windows-msvc'
shell: bash
run: |
mv target/release/comtrya.exe ${{ matrix.platform.name }}.exe
# - name: Rename Binary
# if: matrix.job.target != 'x86_64-pc-windows-msvc'
# shell: bash
# run: |
# mv target/release/comtrya ${{ matrix.platform.target }}

# - name: Rename Binary.exe
# if: matrix.job.target == 'x86_64-pc-windows-msvc'
# shell: bash
# run: |
# mv target/release/comtrya.exe ${{ matrix.platform.target }}.exe

- name: Upload Artifact
if: matrix.platform.target != 'x86_64-pc-windows-msvc'
Expand Down
0