Skip to content

Commit

Permalink
Fix typo, update netrc step
Browse files Browse the repository at this point in the history
  • Loading branch information
aokj4ck committed Jan 19, 2024
1 parent 8594270 commit 47367d8
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,16 @@ jobs:
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality

- run:
name: Prepare .netrc file
command: |
echo "machine api.mapbox.com" >> ~/.netrc
echo "login mapbox" >> ~/.netrc
echo "password $SDK_REGISTRY_TOKEN" >> ~/.netrc
chmod 0600 ~/.netrc
- name: Prepare .netrc file
run: |
echo "machine api.mapbox.com" >> ~/.netrc
echo "login mapbox" >> ~/.netrc
echo "password $SDK_REGISTRY_TOKEN" >> ~/.netrc
chmod 0600 ~/.netrc
- run: |
echo "Run, Build Application using script"
./scirpts/build_spm_sample.sh
./scripts/build_spm_sample.sh
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
Expand Down

0 comments on commit 47367d8

Please sign in to comment.