mirror of
https://github.com/trympet/nextcloud-artifacts-action.git
synced 2025-04-24 20:16:08 +02:00
30 lines
1.0 KiB
Markdown
30 lines
1.0 KiB
Markdown
# Nextcloud Artifact Upload Action
|
|
Upload artifacts to nextcloud and output a shareable URL.
|
|
|
|
### How it looks:
|
|

|
|
|
|
### Example:
|
|
Simple example. Globbing is supported.
|
|
|
|
```yaml
|
|
on:
|
|
pull_request:
|
|
push:
|
|
jobs:
|
|
build-test:
|
|
name: Build & Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2 # checkout the repo
|
|
|
|
- name: Nextcloud Artifact
|
|
uses: trympet/nextcloud-artifacts-action@v2
|
|
with:
|
|
name: 'my-artifact' # Name of the artifact
|
|
path: 'bin/**/*.exe' # Globbing supported
|
|
nextcloud-url: 'https://nextcloud.example.com' # Nextcloud URL
|
|
nextcloud-username: ${{ secrets.NEXTCLOUD_USERNAME }} # Username from repository secret
|
|
nextcloud-password: ${{ secrets.NEXTCLOUD_PASSWORD }} # Password from repository secret
|
|
```
|