Skip to content

Commit

Permalink
Merge pull request #53 from fastly/correct-README
Browse files Browse the repository at this point in the history
Update README.md examples to use latest release.
  • Loading branch information
kpfleming authored Aug 28, 2024
2 parents 22ed4d3 + 546f5ff commit 82a9d4e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
targets: wasm32-wasi # WebAssembly target

- name: Deploy to Compute
uses: fastly/compute-actions@v6
uses: fastly/compute-actions@v8
env:
FASTLY_API_TOKEN: ${{ secrets.FASTLY_API_TOKEN }}
```
Expand All @@ -53,7 +53,7 @@ jobs:
run: npm install
- name: Deploy to Compute
uses: fastly/compute-actions@v6
uses: fastly/compute-actions@v8
env:
FASTLY_API_TOKEN: ${{ secrets.FASTLY_API_TOKEN }}
```
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
- uses: actions/checkout@v3
- name: Set up Fastly CLI
uses: fastly/compute-actions/setup@v6
uses: fastly/compute-actions/setup@v8
with:
cli_version: '1.0.0' # optional, defaults to 'latest'
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -91,12 +91,12 @@ jobs:
run: npm install
- name: Build Compute Package
uses: fastly/compute-actions/build@v6
uses: fastly/compute-actions/build@v8
with:
verbose: true # optionally enables verbose output, defaults to false
- name: Deploy Compute Package
uses: fastly/compute-actions/deploy@v6
uses: fastly/compute-actions/deploy@v8
with:
service_id: '4tYGx...' # optional, defaults to value in fastly.toml
comment: 'Deployed via GitHub Actions' # optional
Expand All @@ -121,7 +121,7 @@ jobs:
shell: bash
steps:
- uses: actions/checkout@v4
- uses: fastly/compute-actions/preview@v6
- uses: fastly/compute-actions/preview@v8
with:
fastly-api-token: ${{ secrets.FASTLY_API_KEY }}
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 82a9d4e

Please sign in to comment.