Skip to content
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
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Changelog

All notable changes to the FlatRun GitHub Actions are documented in this file.

## [1.0.0] - 2026-08-11

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The release date '2026-08-11' appears to be a future-dated placeholder or a typo. It should be updated to the actual current date for the v1.0.0 release.

Suggested change
## [1.0.0] - 2026-08-11
+## [1.0.0] - 2024-05-22


First tagged release. The actions were usable from `main` before this, but nothing resolved
`@v1`, which is what the README tells people to pin, so every documented example was broken.

### Added

- `setup-flatrun` installs a pinned FlatRun CLI release on the runner and puts it on `PATH`,
taking the binary from the release assets and caching it in the runner tool cache. The source
repository can be overridden to install from a fork.
- A `v1` tag that moves with each 1.x release, so `@v1` tracks the latest without a workflow edit,
alongside the exact `v1.0.0` tag for anyone pinning strictly.

### Changed

- The examples install CLI 0.3.0, the first version whose command surface covers the whole agent
API.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- uses: flatrun/actions/setup-flatrun@v1
with:
version: 0.1.0
version: 0.3.0
- run: flatrun deployment deploy api
env:
FLATRUN_URL: ${{ vars.FLATRUN_URL }}
Expand Down
2 changes: 1 addition & 1 deletion examples/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- uses: flatrun/actions/setup-flatrun@v1
with:
version: 0.1.0
version: 0.3.0

- name: Roll out the new image
run: flatrun deployment deploy api --pull
Expand Down
2 changes: 1 addition & 1 deletion setup-flatrun/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Downloads a pinned release of the [FlatRun CLI](https://github.com/flatrun/cli),
```yaml
- uses: flatrun/actions/setup-flatrun@v1
with:
version: 0.1.0
version: 0.3.0

- run: flatrun version
```
Expand Down
Loading