Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xucian committed Nov 14, 2021
1 parent fdda8b0 commit 0157249
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ runs:
using: "composite"
steps:
- name: Fix permissions from prev jobs (docker creates files as root) [WIN]
if: runner.os == 'windows'
if: runner.os == 'Windows'
shell: powershell
run: |
echo TODO if needed
- name: Fix permissions from prev jobs (docker creates files as root) [UNIX]
if: runner.os != 'windows'
if: runner.os != 'Windows'
shell: bash
run: |
echo TODO this is not a long term solution as each job in each workflow file needs to execute this
Expand Down

0 comments on commit 0157249

Please sign in to comment.