Skip to content

timvisee/firefox-send-action

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Firefox Send action

This action uploads file(s) to Firefox Send.

Usage

steps:
  - name: Firefox Send action step
    uses: shooontan/firefox-send-action@v1
    with:
      file: fixtures/hello.txt
      expiry_time: 5m
      password: ${{ secrets.FFSEND_PASSWORD }}

Inputs

  • file (required): The file(s) to upload. If file is directory, it is automatically archived.
  • expiry_time (optional): The file expiry time.
  • password (optional): Protect the file with a password.

Outputs

  • url: Share URL.
steps:
    - name: Firefox Send action step
      uses: shooontan/firefox-send-action@v1
      id: ffsend # output is
      with:
        file: fixtures
        expiry_time: 1m
        password: ${{ secrets.FFSEND_PASSWORD }}
    - name: Get the output url
      run: echo ${{ steps.ffsend.outputs.url }} # show URL

Packages

No packages published

Languages

  • Shell 59.9%
  • Dockerfile 40.1%