Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/sksat/b2-upload-action

GitHub Action for upload files to Backblaze B2
https://github.com/sksat/b2-upload-action

Last synced: 6 days ago
JSON representation

GitHub Action for upload files to Backblaze B2

Awesome Lists containing this project

README

        

# b2-upload-action
[![Build Container Image](https://github.com/sksat/b2-upload-action/actions/workflows/build-image.yml/badge.svg)](https://github.com/sksat/b2-upload-action/actions/workflows/build-image.yml)
[![test Action](https://github.com/sksat/b2-upload-action/actions/workflows/test-action.yml/badge.svg)](https://github.com/sksat/b2-upload-action/actions/workflows/test-action.yml)

GitHub Action for upload file to Backblaze B2

Example workflow
```yaml
jobs:
upload-b2:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- uses: sksat/[email protected]
with:
key_id: ${{ secrets.B2_KEY_ID }}
key: ${{ secrets.B2_KEY }}
bucket: ${{ secrets.B2_BUCKET }}
src: hoge.txt
dest: hoge.txt
```