We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cdd90f commit aea1382Copy full SHA for aea1382
.github/workflows/build-production.yml
@@ -11,6 +11,11 @@ jobs:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v4
14
+ id: checkout
15
+ - name: Set ownership
16
+ run: |
17
+ # this is to fix GIT not liking owner of the checkout dir
18
+ chown -R $(id -u):$(id -g) $PWD
19
# Use GitHub Node Action to install node_modules
20
- uses: actions/setup-node@v4
21
with:
.github/workflows/build-staging.yml
@@ -12,6 +12,10 @@ jobs:
id: checkout
0 commit comments