Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

fharper/wget

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Action for wget

Wraps the wget CLI to be used in GitHub Actions. Note that it's a Docker container action, which means it works only on Linux-based OS.

I do not plan to maintain it, but you can still use it even if it's archived. You can also fork it.

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: fharper/wget@v1
      with:
        args: -O sample.html https://httpbin.org/html
on: push
jobs:
  wget:
    runs-on: ubuntu-latest
    steps:
    - name: wget
      uses: fharper/wget@v1
      with:
        args: -qO- https://httpbin.org/get

Docker

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

Original

Wei He is the original creator, but deleted his GitHub account, which means all workflows using this action stopped working, so I decided to re-upload the code.