Update CI/CD guide (#7050)

* Update CI/CD guide

The guide at https://bun.sh/guides/runtime/cicd shows an outdated example for specifying a version of Bun.
It currently shows "version" and it should be updated to "bun-version".

* Add more examples in CI/CD guide
This commit is contained in:
Shah Bakhteyar Haider
2023-11-13 23:54:03 +06:00
committed by GitHub
parent 1db1941577
commit bf767b53d7

View File

@@ -35,7 +35,7 @@ jobs:
# ...
- uses: oven-sh/setup-bun@v1
+ with:
+ version: 0.7.0 # or "canary"
+ bun-version: 1.0.11 # or "latest", "canary", <sha>
```
---