Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix api rate limit #130

Merged
merged 4 commits into from
Apr 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/daily-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,12 @@ jobs:
steps:
- name: Gives access to repository
uses: actions/checkout@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Node version
uses: actions/setup-node@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
node-version: '12'

- name: Install dependencies
Expand All @@ -30,7 +33,7 @@ jobs:
- name: Deploy Vue Site
uses: peaceiris/actions-gh-pages@v3
with:
personal_token: ${{ secrets.GITHUB_TOKEN }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./frontend/dist
publish_branch: gh-pages
user_name: 'OSS Sauce Bot'
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/lint-and-deploy-on-push-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@ jobs:
steps:
- name: Gives access to repository
uses: actions/checkout@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Node version
uses: actions/setup-node@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
node-version: '12'

- name: Install dependencies
Expand All @@ -31,7 +34,7 @@ jobs:
- name: Deploy Vue Site
uses: peaceiris/actions-gh-pages@v3
with:
personal_token: ${{ secrets.GITHUB_TOKEN }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./frontend/dist
publish_branch: gh-pages
user_name: 'OSS Sauce Bot'
Expand Down