Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/sksat/b2-upload-action
- Owner: sksat
- License: mit
- Created: 2021-08-29T20:07:40.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-30T14:06:10.000Z (about 1 month ago)
- Last Synced: 2024-10-24T18:15:18.963Z (15 days ago)
- Language: Shell
- Size: 50.8 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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-lateststeps:
- 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
```