Skip to content

Commit

Permalink
updating github readme workflow to run with any intermediate commits
Browse files Browse the repository at this point in the history
  • Loading branch information
nrminor committed Oct 21, 2024
1 parent 069c7e5 commit f385656
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/generate_and_render_readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v4
with:
fetch-depth: 0
python-version: "3.11"

- name: Install Dependencies
Expand Down Expand Up @@ -60,11 +61,17 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Pull latest changes from proposals
run: |
git fetch origin proposals
git pull origin proposals
- name: Set up Python
uses: actions/setup-python@v4
with:
fetch-depth: 0
python-version: "3.11"

- name: Install Dependencies
Expand Down

0 comments on commit f385656

Please sign in to comment.