Skip to content

Commit

Permalink
Fix permissions.
Browse files Browse the repository at this point in the history
  • Loading branch information
luigifcruz committed Aug 23, 2020
1 parent c1324d2 commit 3dc9a13
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Check Permissions
run: sudo chown -R $USER:$USER /home/$USER/actions-runner/_work/CyberRadio
run: sudo chown -R $USER:$USER /home/$USER/actions-runner/_work/CyberRadio || true

- uses: actions/checkout@v2

- name: Build Compiler
run: make compiler
Expand Down Expand Up @@ -65,10 +65,10 @@ jobs:
runs-on: [ self-hosted, linux, ARM64 ]

steps:
- uses: actions/checkout@v2

- name: Check Permissions
run: sudo chown -R $USER:$USER /home/$USER/actions-runner/_work/CyberRadio
run: sudo chown -R $USER:$USER /home/$USER/actions-runner/_work/CyberRadio || true

- uses: actions/checkout@v2

- name: Build Compiler
run: make compiler
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Check Permissions
run: sudo chown -R $USER:$USER /home/$USER/actions-runner/_work/CyberRadio
run: sudo chown -R $USER:$USER /home/$USER/actions-runner/_work/CyberRadio || true

- uses: actions/checkout@v2

- name: Build Compiler
run: make compiler
Expand Down Expand Up @@ -47,10 +47,10 @@ jobs:
runs-on: [ self-hosted, linux, ARM64 ]

steps:
- uses: actions/checkout@v2

- name: Check Permissions
run: sudo chown -R $USER:$USER /home/$USER/actions-runner/_work/CyberRadio
run: sudo chown -R $USER:$USER /home/$USER/actions-runner/_work/CyberRadio || true

- uses: actions/checkout@v2

- name: Build Compiler
run: make compiler
Expand Down

0 comments on commit 3dc9a13

Please sign in to comment.