Skip to content

Commit

Permalink
Merge pull request #63 from fastly/release-v10
Browse files Browse the repository at this point in the history
🎁 Release v10
  • Loading branch information
kailan authored Nov 21, 2024
2 parents 453fc37 + 488a734 commit ca26ccc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 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@v9
uses: fastly/compute-actions@v10
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@v9
uses: fastly/compute-actions@v10
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@v9
uses: fastly/compute-actions/setup@v10
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@v9
uses: fastly/compute-actions/build@v10
with:
verbose: true # optionally enables verbose output, defaults to false
- name: Deploy Compute Package
uses: fastly/compute-actions/deploy@v9
uses: fastly/compute-actions/deploy@v10
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@v9
- uses: fastly/compute-actions/preview@v10
with:
fastly-api-token: ${{ secrets.FASTLY_API_KEY }}
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion preview/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ runs:

# Download Fastly CLI
- name: Set up Fastly CLI
uses: fastly/compute-actions/setup@v5
uses: fastly/compute-actions/setup@v10
with:
token: ${{ inputs.github-token }}
cli_version: 'latest'
Expand Down
2 changes: 1 addition & 1 deletion preview/example-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
shell: bash
steps:
- uses: actions/checkout@v3
- uses: fastly/compute-actions/preview@v5
- uses: fastly/compute-actions/preview@v10
with:
fastly-api-token: ${{ secrets.FASTLY_API_KEY }}
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ca26ccc

Please sign in to comment.