Skip to content

Commit

Permalink
Experimental yaml2 (#375)
Browse files Browse the repository at this point in the history
* experiment with naming parameters

* fix $$
  • Loading branch information
martintc committed Dec 13, 2023
1 parent 10601d6 commit 905d6b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,13 @@ jobs:
if: matrix.job.target != 'x86_64-pc-windows-msvc'
shell: bash
run: |
mv target/release/$${{ matrix.platform.bin }} ${{ matrix.platform.name}}
mv target/release/${{ matrix.platform.bin }} ${{ matrix.platform.name }}
- name: Rename Binary.exe
if: matrix.job.target == 'x86_64-pc-windows-msvc'
shell: bash
run: |
mv target/release/$${{ matrix.platform.bin }} ${{ matrix.platform.name }}.exe
mv target/release/${{ matrix.platform.bin }} ${{ matrix.platform.name }}.exe
- name: Upload Artifact
if: matrix.platform.target != 'x86_64-pc-windows-msvc'
Expand All @@ -149,7 +149,7 @@ jobs:
generate_release_notes: false
fail_on_unmatched_files: true
files: |
$${{ matrix.platform.name }}
${{ matrix.platform.name }}
- name: Upload Artifact.exe
if: matrix.platform.target == 'x86_64-pc-windows-msvc'
Expand Down

0 comments on commit 905d6b5

Please sign in to comment.