Skip to content

Commit

Permalink
📝 Remove unneeded reference to github_token
Browse files Browse the repository at this point in the history
Thanks to the PR #468 from @njzjz its possible to use the default github token. 

So we don't need to document how to use it with your own `github_token`.
  • Loading branch information
WtfJoke authored Dec 11, 2024
1 parent 332881b commit d22798b
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ See [action.yml](https://github.com/WtfJoke/setup-tectonic/blob/main/action.yml)
```yml
steps:
- uses: wtfjoke/setup-tectonic@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- run: tectonic main.tex
```
Expand All @@ -35,7 +33,6 @@ You can also download a specific version of Tectonic
steps:
- uses: wtfjoke/setup-tectonic@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
tectonic-version: 0.14.1
- run: tectonic main.tex
```
Expand All @@ -46,7 +43,6 @@ If you want to use biber, specify a biber version (for a full example see [below
steps:
- uses: wtfjoke/setup-tectonic@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
biber-version: 2.17
- run: biber --version
```
Expand All @@ -65,8 +61,6 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- uses: wtfjoke/setup-tectonic@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run Tectonic
run: tectonic main.tex
- name: Upload pdf
Expand Down Expand Up @@ -97,8 +91,6 @@ jobs:
restore-keys: |
${{ runner.os }}-tectonic-
- uses: wtfjoke/setup-tectonic@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run Tectonic
run: tectonic main.tex
- name: Upload pdf
Expand Down Expand Up @@ -130,7 +122,6 @@ jobs:
${{ runner.os }}-tectonic-
- uses: wtfjoke/setup-tectonic@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
biber-version: 'latest'
- name: Run Tectonic + Biber
run: tectonic main.tex
Expand Down

0 comments on commit d22798b

Please sign in to comment.