mirror of
https://code.forgejo.org/actions/forgejo-release.git
synced 2024-11-06 06:15:48 -05:00
45 lines
1.3 KiB
YAML
45 lines
1.3 KiB
YAML
name: 'Forgejo release download and upload'
|
|
author: 'Forgejo authors'
|
|
description: |
|
|
Upload or download the assets of a release to a Forgejo instance.
|
|
inputs:
|
|
url:
|
|
description: 'URL of the Forgejo instance'
|
|
required: true
|
|
repo:
|
|
description: 'owner/project relative to the URL'
|
|
required: true
|
|
tag:
|
|
description: 'Tag of the release'
|
|
required: true
|
|
doer:
|
|
description: 'Forgejo user authoring the upload'
|
|
token:
|
|
description: 'Forgejo application token'
|
|
required: true
|
|
release-dir:
|
|
description: 'Directory in whichs release assets are uploaded or downloaded'
|
|
required: true
|
|
direction:
|
|
description: 'Can either be download or upload'
|
|
required: true
|
|
verbose:
|
|
description: 'Increase the verbosity level'
|
|
default: 'false'
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- run: echo "${{ github.action_path }}" >> $GITHUB_PATH
|
|
shell: bash
|
|
- run: |
|
|
export FORGEJO="${{ inputs.url }}"
|
|
export REPO="${{ inputs.repo }}"
|
|
export TAG="${{ inputs.tag }}"
|
|
export DOER="${{ inputs.doer }}"
|
|
export TOKEN="${{ inputs.token }}"
|
|
export RELEASE_DIR="${{ inputs.release-dir }}"
|
|
export VERBOSE="${{ inputs.verbose }}"
|
|
export SHA="${{ github.sha }}"
|
|
forgejo-release.sh ${{ inputs.direction }}
|
|
shell: bash
|