Skip to content
This repository has been archived by the owner on Apr 4, 2020. It is now read-only.

Releases: swinton/httpie.action

1.0.6

08 Feb 16:45
8ab0a0e
Compare
Choose a tag to compare
Update Dockerfile

Release 1.0.5

25 Jan 02:38
f9f593f
Compare
Choose a tag to compare
Merge pull request #22 from swinton/rename

Rename

Release 1.0.4

25 Jan 02:33
8c3561f
Compare
Choose a tag to compare

Minor rebrand ⚡

Release 1.0.3

22 Jan 22:04
8c3561f
Compare
Choose a tag to compare

Includes the jq CLI, a lightweight and flexible command-line JSON processor, to enable acting on HTTPie responses in downstream actions.

Release 1.0.2

22 Jan 02:24
dd3b984
Compare
Choose a tag to compare

HTTPie response preserved, in $HOME/$GITHUB_ACTION.response (full response), $HOME/$GITHUB_ACTION.response.headers (response headers), and $HOME/$GITHUB_ACTION.response.body (response body), for consumption by downstream Actions.

Release 1.0.1

21 Jan 03:34
1e9f597
Compare
Choose a tag to compare

Now with smarter presets for GitHub Actions, and baked-in HTTPie authentication plugins.

Initial release

18 Jan 23:13
2011cef
Compare
Choose a tag to compare
Initial release Pre-release
Pre-release

GitHub Actions compatible version of HTTPie.

Usage

Use as part of a GitHub Action like so:

workflow "Call external API" {
  on = "push"
  resolves = ["Call httpbin"]
}

action "Call httpbin" {
  uses = "swinton/httpie-action@master"
  args = ["--ignore-stdin", "https://httpbin.org/anything", "foo=bar"]
}

More info

Usage docs for HTTPie are here.