Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sksat/b2-download-action
https://github.com/sksat/b2-download-action
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sksat/b2-download-action
- Owner: sksat
- License: mit
- Created: 2021-09-01T12:57:53.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-28T20:15:44.000Z (7 months ago)
- Last Synced: 2024-05-29T11:17:17.911Z (7 months ago)
- Language: Shell
- Size: 34.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# b2-download-action
[![Build Container Image](https://github.com/sksat/b2-download-action/actions/workflows/build-image.yml/badge.svg)](https://github.com/sksat/b2-download-action/actions/workflows/build-image.yml)
[![test Action](https://github.com/sksat/b2-download-action/actions/workflows/test-action.yml/badge.svg)](https://github.com/sksat/b2-download-action/actions/workflows/test-action.yml)GitHub Action for download file from Backblaze B2
Example workflow
```yaml
jobs:
download-b2:
runs-on: ubuntu-lateststeps:
- uses: actions/checkout@v2- uses: sksat/b2-download-action@main
with:
key_id: ${{ secrets.B2_KEY_ID }}
key: ${{ secrets.B2_KEY }}
bucket: ${{ secrets.B2_BUCKET }}
src: hoge.txt
dest: hoge.txt
```