Skip to content

Commit 2585db7

Browse files
authored
Merge pull request #38 from Expensify/andrew-readme
Update README.md
2 parents 1e03139 + 30fe616 commit 2585db7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Expensify has multiple repositories that use the same GitHub Actions workflows.
88

99
### `npmPublish.yml`
1010

11-
Used to publish a package to [npmjs](https://www.npmjs.com/), should be triggered when code is merged into the `main` branch.
11+
Used to publish a package to [npmjs](https://www.npmjs.com/), should be triggered when code is merged into the `main` branch. **Note**: Please follow [these instructions](https://stackoverflowteams.com/c/expensify/questions/17043/17044#17044) to grant our bots the correct access to publish.
1212

1313
```yml
1414
jobs:

scripts/validateWorkflowSchemas.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ trap 'rm -rf "$TEMP_SCHEMA_DIR"' EXIT
2020
# Download the up-to-date json schemas for github actions and workflows
2121
for SCHEMA in github-action.json github-workflow.json; do
2222
info "Downloading $SCHEMA schema..."
23-
if curl "https://json.schemastore.org/$SCHEMA" --output "$TEMP_SCHEMA_DIR/$SCHEMA" --silent; then
23+
if curl "https://raw.githubusercontent.com/SchemaStore/schemastore/refs/heads/master/src/schemas/json/$SCHEMA" --output "$TEMP_SCHEMA_DIR/$SCHEMA" --silent; then
2424
success "Successfully downloaded $SCHEMA schema!"
2525
else
2626
error "Failed downloading $SCHEMA schema" >&2

0 commit comments

Comments
 (0)