0
1
Fork 1
mirror of https://code.forgejo.org/actions/forgejo-release synced 2024-09-19 02:35:51 +02:00
forgejo-release/action.yml

110 lines
3.2 KiB
YAML
Raw Normal View History

2023-04-01 11:12:56 +02:00
# SPDX-License-Identifier: MIT
2023-03-29 17:16:26 +02:00
name: 'Forgejo release download and upload'
author: 'Forgejo authors'
description: |
2023-03-29 17:16:26 +02:00
Upload or download the assets of a release to a Forgejo instance.
inputs:
url:
description: 'URL of the Forgejo instance'
repo:
description: 'owner/project relative to the URL'
tag:
description: 'Tag of the release'
title:
description: 'Title of the release (defaults to tag)'
sha:
description: 'SHA of the release'
2023-03-29 17:16:26 +02:00
token:
description: 'Forgejo application token'
required: true
release-dir:
description: 'Directory in whichs release assets are uploaded or downloaded'
required: true
2023-03-29 23:59:02 +02:00
release-notes:
description: 'Release notes'
2023-03-29 17:16:26 +02:00
direction:
description: 'Can either be download or upload'
required: true
2023-05-23 13:04:53 +02:00
gpg-private-key:
description: 'GPG Private Key to sign the release artifacts'
gpg-passphrase:
description: 'Passphrase of the GPG Private Key'
download-retry:
description: 'Number of times to retry if the release is not ready (default 1)'
download-latest:
description: 'Download the latest release'
default: 'false'
2023-03-29 17:16:26 +02:00
verbose:
description: 'Increase the verbosity level'
default: 'false'
override:
description: 'Override an existing release by the same {tag}'
default: 'false'
2024-01-03 19:23:39 +01:00
prerelease:
description: 'Mark Release as Pre-Release'
default: 'false'
runs:
using: "composite"
steps:
- run: echo "${{ github.action_path }}" >> $GITHUB_PATH
shell: bash
2023-03-29 17:16:26 +02:00
- run: |
export FORGEJO="${{ inputs.url }}"
2023-03-30 08:52:59 +02:00
if test -z "$FORGEJO"; then
export FORGEJO="${{ env.GITHUB_SERVER_URL }}"
2023-03-30 08:52:59 +02:00
fi
# A trailing / will mean http://forgejo//api/v1 is used
# and it always 401 as of v1.19, because of the double slash
FORGEJO=${FORGEJO%%/}
2023-05-23 13:04:39 +02:00
2023-03-29 17:16:26 +02:00
export REPO="${{ inputs.repo }}"
2023-03-30 08:52:59 +02:00
if test -z "$REPO"; then
export REPO="${{ github.repository }}"
fi
2023-05-23 13:04:39 +02:00
2023-03-29 17:16:26 +02:00
export TAG="${{ inputs.tag }}"
2023-03-30 14:18:23 +02:00
if test -z "$TAG"; then
export TAG="${{ github.ref_name }}"
2023-03-31 00:36:06 +02:00
# until https://code.forgejo.org/forgejo/runner/issues/9 is fixed
# trim refs/tags/
TAG=${TAG##refs/tags/}
2023-03-30 14:18:23 +02:00
fi
2023-05-23 13:04:39 +02:00
export TITLE="${{ inputs.title }}"
export DOWNLOAD_LATEST="${{ inputs.download-latest }}"
2024-01-03 19:23:39 +01:00
export PRERELEASE="${{ inputs.prerelease }}"
2023-03-29 17:16:26 +02:00
export TOKEN="${{ inputs.token }}"
2023-05-23 13:04:39 +02:00
2023-03-29 17:16:26 +02:00
export RELEASE_DIR="${{ inputs.release-dir }}"
2023-05-23 13:04:39 +02:00
export RELEASENOTES=$(cat << 'EOF'
${{ inputs.release-notes }}
EOF
)
2023-03-30 08:52:59 +02:00
export SHA="${{ inputs.sha }}"
if test -z "$SHA"; then
export SHA="${{ github.sha }}"
fi
2023-05-23 13:04:39 +02:00
export OVERRIDE="${{ inputs.override }}"
2023-05-23 13:04:39 +02:00
export VERBOSE="${{ inputs.verbose }}"
export RETRY="${{ inputs.download-retry }}"
2023-05-26 14:48:58 +02:00
export TMP_DIR=$(mktemp -d)
trap "rm -fr $TMP_DIR" EXIT
echo -n "${{ inputs.gpg-private-key }}" > $TMP_DIR/gpg-private-key
export GPG_PRIVATE_KEY=$TMP_DIR/gpg-private-key
echo -n "${{ inputs.gpg-passphrase }}" > $TMP_DIR/gpg-passphrase
export GPG_PASSPHRASE="$TMP_DIR/gpg-passphrase"
2023-03-29 17:16:26 +02:00
forgejo-release.sh ${{ inputs.direction }}
shell: bash