Skip to content

Commit

Permalink
chore(soundpipeactions)#: Fix order of mkdir
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueCyro committed Sep 10, 2024
1 parent 7894429 commit d42504c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-linux-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
- name: Create output directory variable
id: buildoutput
run: echo "build-output-dir=${{ github.workspace }}/OutputFiles" >> "$GITHUB_OUTPUT"

- name: Make runtimes directory for windows/linux
run: mkdir ${{ steps.buildoutput.outputs.build-output-dir }}/runtimes

- name: Make output directory
run: mkdir ${{ steps.buildoutput.outputs.build-output-dir }}

- name: Make runtimes directory for windows/linux
run: mkdir ${{ steps.buildoutput.outputs.build-output-dir }}/runtimes

- name: Install MinGW
run: sudo apt install -y mingw-w64

Expand Down

0 comments on commit d42504c

Please sign in to comment.