Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🎁 Release v11 #71

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 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@v10
uses: fastly/compute-actions@v11
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@v10
uses: fastly/compute-actions@v11
env:
FASTLY_API_TOKEN: ${{ secrets.FASTLY_API_TOKEN }}
```
Expand All @@ -80,7 +80,7 @@ jobs:
go-version: "1.23"

- name: Deploy to the Compute platform
uses: fastly/compute-actions@v5
uses: fastly/compute-actions@v11
env:
FASTLY_API_TOKEN: ${{ secrets.FASTLY_API_TOKEN }}
```
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
- uses: actions/checkout@v3

- name: Set up Fastly CLI
uses: fastly/compute-actions/setup@v10
uses: fastly/compute-actions/setup@v11
with:
cli_version: '1.0.0' # optional, defaults to 'latest'
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -118,12 +118,12 @@ jobs:
run: npm install

- name: Build Compute Package
uses: fastly/compute-actions/build@v10
uses: fastly/compute-actions/build@v11
with:
verbose: true # optionally enables verbose output, defaults to false

- name: Deploy Compute Package
uses: fastly/compute-actions/deploy@v10
uses: fastly/compute-actions/deploy@v11
with:
service_id: '4tYGx...' # optional, defaults to value in fastly.toml
comment: 'Deployed via GitHub Actions' # optional
Expand All @@ -148,7 +148,7 @@ jobs:
shell: bash
steps:
- uses: actions/checkout@v4
- uses: fastly/compute-actions/preview@v10
- uses: fastly/compute-actions/preview@v11
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@v10
uses: fastly/compute-actions/setup@v11
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@v10
- uses: fastly/compute-actions/preview@v11
with:
fastly-api-token: ${{ secrets.FASTLY_API_KEY }}
github-token: ${{ secrets.GITHUB_TOKEN }}
Loading