Skip to content

Commit

Permalink
♻️ Use actual filepaths and env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonBirchall committed Jun 24, 2024
1 parent 483e46d commit 8df83b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dry-run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Run OctoDNS dry run
run: |
source venv/bin/activate
octodns-sync --config-file=./config/production/octodns.yaml
octodns-sync --config-file=./config/octodns.yaml
env:
AWS_ACCESS_KEY_ID: ${{ secrets.OCTODNS_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.OCTODNS_AWS_SECRET_ACCESS_KEY }}
7 changes: 3 additions & 4 deletions .github/workflows/sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ jobs:
- name: Run OctoDNS sync
run: |
source venv/bin/activate
octodns-sync --config-file=./config/production/octodns.yaml --doit
octodns-sync --config-file=./config/octodns.yaml --doit
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

AWS_ACCESS_KEY_ID: ${{ secrets.OCTODNS_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.OCTODNS_AWS_SECRET_ACCESS_KEY }}

0 comments on commit 8df83b8

Please sign in to comment.