Skip to content

Commit 41ef7a5

Browse files
dmosyandecyjphr
andauthored
docs: github action example fix (#781)
Co-authored-by: Yadhav Jayaraman <57544838+decyjphr@users.noreply.github.com>
1 parent cabd7c2 commit 41ef7a5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/github-action.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ jobs:
3838
- uses: actions/checkout@v4
3939
with:
4040
repository: github/safe-settings
41-
ref: $SAFE_SETTINGS_VERSION
42-
path: $SAFE_SETTINGS_CODE_DIR
41+
ref: ${{ env.SAFE_SETTINGS_VERSION }}
42+
path: ${{ env.SAFE_SETTINGS_CODE_DIR }}
4343
- uses: actions/setup-node@v4
4444
- run: npm install
45-
working-directory: $SAFE_SETTINGS_CODE_DIR
45+
working-directory: ${{ env.SAFE_SETTINGS_CODE_DIR }}
4646
- run: npm run full-sync
47-
working-directory: $SAFE_SETTINGS_CODE_DIR
47+
working-directory: ${{ env.SAFE_SETTINGS_CODE_DIR }}
4848
env:
4949
GH_ORG: ${{ vars.SAFE_SETTINGS_GH_ORG }}
5050
APP_ID: ${{ vars.SAFE_SETTINGS_APP_ID }}

0 commit comments

Comments
 (0)