diff options
| author | merakor <cem@ckyln.com> | 2021-01-05 13:15:39 +0000 |
|---|---|---|
| committer | merakor <cem@ckyln.com> | 2021-01-05 13:15:39 +0000 |
| commit | 6cbbd31889fa7222aedaf88bc3337087122f98fe (patch) | |
| tree | c1444ee610163c62e4155172b5747d52a604e43e | |
| parent | 75c3fb6284581158e409964d19dd87a6f54ed18d (diff) | |
| download | cpt-6cbbd31889fa7222aedaf88bc3337087122f98fe.tar.gz | |
GitHub Actions: fix permission error
FossilOrigin-Name: 85c0989d6f7a9a18e0b0fd9ae66457107ae5a4ad37a5b9b0642262fad04febcc
| -rw-r--r-- | .github/workflows/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 47384aa..97598e4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Install shellspec - run: curl -fsSL https://git.io/shellspec | sh -s -- -p /usr/local -y + run: curl -fsSL https://git.io/shellspec | sudo sh -s -- -p /usr/local -y build: runs-on: ubuntu-latest needs: setup |
