https://github.com/sksat/b2-upload-action
GitHub Action for upload files to Backblaze B2
https://github.com/sksat/b2-upload-action
Last synced: 2 months 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 (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-24T13:12:20.000Z (3 months ago)
- Last Synced: 2025-04-24T14:28:32.219Z (3 months ago)
- Language: Shell
- Size: 58.6 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
[](https://github.com/sksat/b2-upload-action/actions/workflows/build-image.yml)
[](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
```