All Projects → wei → Curl

wei / Curl

Wraps the curl CLI to be used in Github Actions

Projects that are alternatives of or similar to Curl

Curlie
The power of curl, the ease of use of httpie.
Stars: ✭ 877 (+1386.44%)
Mutual labels:  curl
Minisauras
An open-source CI/CD automation tool based on GitHub Actions that pulls all the JavaScript and CSS files from your base branch, minify them and creates a pull-request with a new branch.
Stars: ✭ 40 (-32.2%)
Mutual labels:  action
Roboget
📦Roboget automates the process of getting apps and downloads directly
Stars: ✭ 49 (-16.95%)
Mutual labels:  curl
Curl Collisions
An implementation of Heilman et al.'s differential attack on IOTA's Curl hashing function.
Stars: ✭ 20 (-66.1%)
Mutual labels:  curl
Php Educational Administration
大学微信查教务成绩 数据抓取 数据分析 微信查成绩 验证码识别 redis缓存
Stars: ✭ 38 (-35.59%)
Mutual labels:  curl
Naming Cheatsheet
Comprehensive language-agnostic guidelines on variables naming. Home of the A/HC/LC pattern.
Stars: ✭ 9,475 (+15959.32%)
Mutual labels:  action
Pwned
Simple C++ code for simple tasks
Stars: ✭ 16 (-72.88%)
Mutual labels:  curl
Bashupload
PHP/JavaScript file upload web app to upload files from command line & browser, and download them elsewhere. Frequently used to upload/download files on servers. Hosted version is available at bashupload.com.
Stars: ✭ 56 (-5.08%)
Mutual labels:  curl
Gmod Chttp
A HTTP()-compatible wrapper for curl in Garry's Mod.
Stars: ✭ 39 (-33.9%)
Mutual labels:  curl
Processjs
Stars: ✭ 48 (-18.64%)
Mutual labels:  action
Coronavirus Tracker Cli
Track conronavirus cases from command line. curl https://corona-stats.online/
Stars: ✭ 954 (+1516.95%)
Mutual labels:  curl
Lyndacoursesdownloader
Cross platform .net core program to download lynda.com courses for offline use
Stars: ✭ 37 (-37.29%)
Mutual labels:  curl
Icememe
Roblox Exploit Source Code Called IceMeme with some cmds, lua c and limited lua execution with simple ui in c#
Stars: ✭ 42 (-28.81%)
Mutual labels:  curl
React Redux Boilerplate Example
Stars: ✭ 15 (-74.58%)
Mutual labels:  action
Skip Commit
GitHub Action: skip based on the last commit message containing a string
Stars: ✭ 51 (-13.56%)
Mutual labels:  action
Httr
httr: a friendly http package for R
Stars: ✭ 897 (+1420.34%)
Mutual labels:  curl
Github Action Get Previous Tag
Get the previous tag
Stars: ✭ 42 (-28.81%)
Mutual labels:  action
Rsync Deployments
GitHub Action for deploying code via rsync over ssh
Stars: ✭ 59 (+0%)
Mutual labels:  action
Api server boilerplate
typescript express board boilerplate using routing controller
Stars: ✭ 52 (-11.86%)
Mutual labels:  action
Activity
A PHP API to log anything anywhere
Stars: ✭ 44 (-25.42%)
Mutual labels:  curl

GitHub Action for curl

Wraps the curl CLI to be used in GitHub Actions. See also GitHub Action for wget.

Features

  • make http requests
  • http errors are treated as errors

Usage

GitHub Actions

on: push
jobs:
  curl:
    runs-on: ubuntu-latest
    steps:
    - name: curl
      uses: wei/[email protected]
      with:
        args: https://httpbin.org/get
on: push
jobs:
  curl:
    runs-on: ubuntu-latest
    steps:
    - name: curl
      uses: wei/[email protected]
      with:
        args: -X POST https://httpbin.org/post
on: push
jobs:
  curl:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/[email protected]
    - name: curl
      uses: wei/[email protected]
      with:
        args: --upload-file .github/workflows/main.yml https://transfer.sh/main-workflow.yml

Docker

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

Author

Wei He [email protected]

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].