Skip to content

Commit

Permalink
ci: run release job on self-hosted runner
Browse files Browse the repository at this point in the history
Try to fix error:
	Run npm i -g npm@"^10.0.0"
	npm error code EACCES
	npm error syscall mkdir
	npm error path /usr/local/share/man/man7
	npm error errno -13
	npm error [Error: EACCES: permission denied, mkdir '/usr/local/share/man/man7'] {
	npm error   errno: -13,
	npm error   code: 'EACCES',
	npm error   syscall: 'mkdir',
	npm error   path: '/usr/local/share/man/man7'
	npm error }

Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
  • Loading branch information
Altahrim committed Aug 9, 2024
1 parent 8d62420 commit 5e2c490
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
permissions:
contents: write
environment: release
runs-on: ubuntu-latest
runs-on: [ubuntu-latest, self-hosted]
steps:
- name: Checkout repository
uses: actions/checkout@v2
Expand Down

0 comments on commit 5e2c490

Please sign in to comment.