Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/trympet/nextcloud-artifacts-action
GitHub Action for uploading artifacts to Nextcloud via webdav
https://github.com/trympet/nextcloud-artifacts-action
artifacts cicd devops github-actions self-hosted
Last synced: 2 months ago
JSON representation
GitHub Action for uploading artifacts to Nextcloud via webdav
- Host: GitHub
- URL: https://github.com/trympet/nextcloud-artifacts-action
- Owner: trympet
- License: gpl-2.0
- Created: 2021-06-02T11:10:23.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-06-25T11:41:51.000Z (7 months ago)
- Last Synced: 2024-11-01T14:51:51.623Z (3 months ago)
- Topics: artifacts, cicd, devops, github-actions, self-hosted
- Language: TypeScript
- Homepage:
- Size: 1.16 MB
- Stars: 12
- Watchers: 2
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nextcloud Artifact Upload Action
Upload artifacts to nextcloud and output a shareable URL.### How it looks:
![image](https://user-images.githubusercontent.com/23460729/120891750-7f247380-c60a-11eb-9998-3b3b7f61066f.png)### 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
```