-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(plot_history): refactor workflow for local plot
- Loading branch information
1 parent
30050de
commit 2058576
Showing
1 changed file
with
14 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,12 +10,16 @@ jobs: | |
|
||
steps: | ||
- name: 📀 Checks Repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: 🐍 Setup Python | ||
uses: actions/[email protected] | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.11' | ||
cache: 'pip' | ||
cache-dependency-path: requirements.txt | ||
|
||
- name: 🔠 Add all locale support | ||
run: | | ||
|
@@ -29,10 +33,16 @@ jobs: | |
- name: 📦 Install project requirements | ||
run: pip install -r requirements.txt | ||
|
||
- name: 📈 Post history plot | ||
- name: 📈 Generate History plot | ||
env: | ||
CONSUMER_KEY: ${{ secrets.CONSUMER_KEY }} | ||
CONSUMER_SECRET: ${{ secrets.CONSUMER_SECRET }} | ||
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | ||
ACCESS_TOKEN_SECRET: ${{ secrets.ACCESS_TOKEN_SECRET }} | ||
run: python post_plot_history.py | ||
run: python plot_history.py | ||
|
||
- name: 📎 Commit gas information with history | ||
uses: actions-js/push@master | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
branch: main |