Skip to content

Commit

Permalink
#25306 updated readme and cicd
Browse files Browse the repository at this point in the history
  • Loading branch information
KrzysztofBrylski committed Sep 5, 2024
1 parent 1e1b07f commit 68223a3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cloudflare_worker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
else
echo "Using user-provided Flotiq API Key. Importing starter data to Flotiq." && echo "GATSBY_FLOTIQ_API_KEY=$GATSBY_FLOTIQ_API_KEY" >> $GITHUB_ENV
npm install -g flotiq-cli
flotiq import ./flotiq $GATSBY_FLOTIQ_API_KEY
flotiq import .flotiq $GATSBY_FLOTIQ_API_KEY
fi
- run: npm install -g gatsby-cli
- run: yarn install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: npm install -g gatsby-cli
- run: npm install -g flotiq-cli
- run: flotiq import ./flotiq ${{ secrets.GATSBY_FLOTIQ_API_KEY }}
- run: flotiq import .flotiq ${{ secrets.GATSBY_FLOTIQ_API_KEY }}
- run: yarn install
- run: gatsby build
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: npm install -g gatsby-cli
- run: npm install -g flotiq-cli
- run: flotiq import ./flotiq ${{ secrets.GATSBY_FLOTIQ_API_KEY }}
- run: flotiq import .flotiq ${{ secrets.GATSBY_FLOTIQ_API_KEY }}
- run: yarn install
- run: gatsby build
env:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ This project works on node >=18.0.0, as require Gatsby 5.
If you wish to import example data to your account, before running `gatsby develop` run:

```sh
flotiq import ./flotiq [flotiqApiKey]
flotiq import .flotiq [flotiqApiKey]
```

It will add one example object to your Flotiq account.
Expand Down

0 comments on commit 68223a3

Please sign in to comment.