Skip to content

Commit

Permalink
Allow read, write and execute permission for all users
Browse files Browse the repository at this point in the history
  • Loading branch information
dennis531 committed Dec 3, 2024
1 parent 2bc4100 commit d5038e8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ jobs:
run: docker compose up --wait

# Needed as studip directory has root owner and chown on whole directory takes too long
- name: Change ownership to user www-data for data and plugin directory
- name: Allow read, write and execute for all users in data and plugin directory
working-directory: ./.github/docker
run: docker compose exec studip chown -R www-data data public/plugins_packages
run: docker compose exec studip chmod -R 777 data public/plugins_packages

# Auto migrate in studip image seems to be broken
- name: Migrate studip
Expand All @@ -58,6 +58,9 @@ jobs:
- name: Trigger playlists migration to Opencast
run: curl http://localhost/plugins.php/opencastv3/api/migrate_playlists -u root@studip:testing

- name: Echo user
run: whoami

- name: Run tests
run: npm run tests

Expand Down

0 comments on commit d5038e8

Please sign in to comment.