-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 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 |
---|---|---|
|
@@ -8,7 +8,7 @@ Set up your GitHub Actions workflow with a specific version of Bun. | |
### Latest stable | ||
|
||
```yaml | ||
- uses: xhyrom/[email protected].6 | ||
- uses: xhyrom/[email protected].7 | ||
with: | ||
bun-version: latest | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -17,7 +17,7 @@ Set up your GitHub Actions workflow with a specific version of Bun. | |
### Specific version | ||
```yaml | ||
- uses: xhyrom/[email protected].6 | ||
- uses: xhyrom/[email protected].7 | ||
with: | ||
bun-version: "0.1.5" | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -26,7 +26,7 @@ Set up your GitHub Actions workflow with a specific version of Bun. | |
### Canary builds | ||
```yaml | ||
- uses: xhyrom/[email protected].6 | ||
- uses: xhyrom/[email protected].7 | ||
with: | ||
bun-version: canary | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -35,7 +35,7 @@ Set up your GitHub Actions workflow with a specific version of Bun. | |
### Custom repository | ||
```yaml | ||
- uses: xhyrom/[email protected].6 | ||
- uses: xhyrom/[email protected].7 | ||
with: | ||
repository: https://github.com/oven-sh/misc-test-builds | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -44,7 +44,7 @@ Set up your GitHub Actions workflow with a specific version of Bun. | |
### Custom download url | ||
```yaml | ||
- uses: xhyrom/[email protected].6 | ||
- uses: xhyrom/[email protected].7 | ||
with: | ||
custom-download-url: https://api.github.com/repos/oven-sh/bun/actions/artifacts/311939881/zip # must be github api | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
|