Stable
This commit is contained in:
parent
355a3e83a2
commit
281bdfb13d
|
@ -0,0 +1,19 @@
|
||||||
|
name: Auto Assign
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types: [opened]
|
||||||
|
pull_request:
|
||||||
|
types: [opened]
|
||||||
|
jobs:
|
||||||
|
run:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
issues: write
|
||||||
|
pull-requests: write
|
||||||
|
steps:
|
||||||
|
- name: 'Auto-assign issue'
|
||||||
|
uses: pozil/auto-assign-issue@v1
|
||||||
|
with:
|
||||||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
assignees: opa-oz
|
||||||
|
numOfAssignee: 1
|
10
README.md
10
README.md
|
@ -1,5 +1,7 @@
|
||||||
# Yet another MinIO Upload GitHub Action
|
# Yet another MinIO Upload GitHub Action
|
||||||
|
|
||||||
|
🥳Check also [Yet another MinIO Download GitHub Action](https://github.com/yakubique/minio-download)
|
||||||
|
|
||||||
Runs [minio client](https://min.io/docs/minio/linux/reference/minio-mc.html) to upload file(s) to MinIO (self-hosted as well)
|
Runs [minio client](https://min.io/docs/minio/linux/reference/minio-mc.html) to upload file(s) to MinIO (self-hosted as well)
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
@ -7,13 +9,13 @@ Runs [minio client](https://min.io/docs/minio/linux/reference/minio-mc.html) to
|
||||||
1. Upload a file
|
1. Upload a file
|
||||||
```yaml
|
```yaml
|
||||||
- name: Upload to MinIO
|
- name: Upload to MinIO
|
||||||
uses: yakubique/minio-upload@v1.1.0
|
uses: yakubique/minio-upload@v1.1
|
||||||
with:
|
with:
|
||||||
endpoint: ${{ secrets.MINIO_ENDPOINT }}
|
endpoint: ${{ secrets.MINIO_ENDPOINT }}
|
||||||
access_key: ${{ secrets.MINIO_ACCESS_KEY }}
|
access_key: ${{ secrets.MINIO_ACCESS_KEY }}
|
||||||
secret_key: ${{ secrets.MINIO_SECRET_KEY }}
|
secret_key: ${{ secrets.MINIO_SECRET_KEY }}
|
||||||
bucket: my_bucket_name
|
bucket: my_bucket_name
|
||||||
source: ./my-build-1-0-1.tar.gz
|
source: ./my-build-1-1-0.tar.gz
|
||||||
# Leading slash is required
|
# Leading slash is required
|
||||||
target: '/builds'
|
target: '/builds'
|
||||||
```
|
```
|
||||||
|
@ -21,7 +23,7 @@ Runs [minio client](https://min.io/docs/minio/linux/reference/minio-mc.html) to
|
||||||
2. Upload a directory
|
2. Upload a directory
|
||||||
```yaml
|
```yaml
|
||||||
- name: Upload a directory to MinIO
|
- name: Upload a directory to MinIO
|
||||||
uses: yakubique/minio-upload@vv1.1.0
|
uses: yakubique/minio-upload@v1.1
|
||||||
with:
|
with:
|
||||||
endpoint: ${{ secrets.MINIO_ENDPOINT }}
|
endpoint: ${{ secrets.MINIO_ENDPOINT }}
|
||||||
access_key: ${{ secrets.MINIO_ACCESS_KEY }}
|
access_key: ${{ secrets.MINIO_ACCESS_KEY }}
|
||||||
|
@ -37,7 +39,7 @@ Runs [minio client](https://min.io/docs/minio/linux/reference/minio-mc.html) to
|
||||||
3. Upload to the insecure MinIO instance (_http-only_)
|
3. Upload to the insecure MinIO instance (_http-only_)
|
||||||
```yaml
|
```yaml
|
||||||
- name: Upload to MinIO
|
- name: Upload to MinIO
|
||||||
uses: yakubique/minio-upload@v1.1.0
|
uses: yakubique/minio-upload@v1.1
|
||||||
with:
|
with:
|
||||||
endpoint: ${{ secrets.MINIO_ENDPOINT }}
|
endpoint: ${{ secrets.MINIO_ENDPOINT }}
|
||||||
access_key: ${{ secrets.MINIO_ACCESS_KEY }}
|
access_key: ${{ secrets.MINIO_ACCESS_KEY }}
|
||||||
|
|
Loading…
Reference in New Issue