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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.7.0"
".": "0.8.0"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.8.0](https://github.com/rubykatzen/flightdeck/compare/v0.7.0...v0.8.0) (2026-08-24)


### Features

* support literal values in vault manifests, use for DISABLE_SIGNUP ([#150](https://github.com/rubykatzen/flightdeck/issues/150)) ([c6e7d26](https://github.com/rubykatzen/flightdeck/commit/c6e7d2646f354ea150ec6941c8960560d3e0f0af))

## [0.7.0](https://github.com/rubykatzen/flightdeck/compare/v0.6.3...v0.7.0) (2026-08-24)


Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,12 +290,12 @@ Builds a zip archive from caller-selected paths, rejects runtime state and env f
steps:
- uses: actions/checkout@v7
with:
ref: v0.7.0
- uses: rubykatzen/flightdeck/.github/actions/build-bundle@v0.7.0
ref: v0.8.0
- uses: rubykatzen/flightdeck/.github/actions/build-bundle@v0.8.0
with:
paths: apps
bundle-name: flightdeck-apps.zip
release-tag: v0.7.0
release-tag: v0.8.0
token: ${{ secrets.GITHUB_TOKEN }}
```

Expand All @@ -315,10 +315,10 @@ A thin defaults wrapper around `build-bundle`: `paths` defaults to `apps`, `bund
steps:
- uses: actions/checkout@v7
with:
ref: v0.7.0
- uses: rubykatzen/flightdeck/.github/actions/build-apps-bundle@v0.7.0
ref: v0.8.0
- uses: rubykatzen/flightdeck/.github/actions/build-apps-bundle@v0.8.0
with:
release-tag: v0.7.0
release-tag: v0.8.0
token: ${{ secrets.GITHUB_TOKEN }}
```

Expand All @@ -341,7 +341,7 @@ Tailscale is optional, not a dependency of this workflow: set `tailscale-oauth-c
```yaml
jobs:
deploy:
uses: rubykatzen/flightdeck/.github/workflows/deploy-shared.yml@v0.7.0
uses: rubykatzen/flightdeck/.github/workflows/deploy-shared.yml@v0.8.0
with:
hosts: '["deploy@app1.example.com", "deploy@app2.example.com"]' # required JSON array
app-refs: '["rubykatzen/flightdeck@latest"]' # required non-empty JSON array
Expand All @@ -358,7 +358,7 @@ jobs:

<!-- x-release-please-end -->

The `@v0.7.0` pin on the `uses:` line only controls which ref runs `deploy/deploy.py` itself. `app-refs` entries are separate and don't have to match the workflow pin. <!-- x-release-please-version -->
The `@v0.8.0` pin on the `uses:` line only controls which ref runs `deploy/deploy.py` itself. `app-refs` entries are separate and don't have to match the workflow pin. <!-- x-release-please-version -->

## License

Expand Down