Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wei/wget

Wraps the wget CLI to be used in Github Actions
https://github.com/wei/wget

action github-action wget

Last synced: 21 days ago
JSON representation

Wraps the wget CLI to be used in Github Actions

Awesome Lists containing this project

README

        

# GitHub Action for wget

Wraps the wget CLI to be used in GitHub Actions. See also [GitHub Action for curl](https://github.com/marketplace/actions/github-action-for-curl).

## Features
* make http requests
* http errors are treated as errors

## Usage

### GitHub Actions
```
on: push
jobs:
wget:
runs-on: ubuntu-latest
steps:
- name: wget
uses: wei/wget@v1
with:
args: -O sample.html https://httpbin.org/html
```

```
on: push
jobs:
wget:
runs-on: ubuntu-latest
steps:
- name: wget
uses: wei/wget@v1
with:
args: -qO- https://httpbin.org/get
```

### Docker
```
docker run --rm $(docker build -q .) \
-qO- https://httpbin.org/get
```

## Author
[Wei He](https://github.com/wei) [email protected]_

## License
[MIT](https://wei.mit-license.org)