Compare commits
No commits in common. "main" and "v2.7.2" have entirely different histories.
6 changed files with 12 additions and 10 deletions
|
|
@ -6,7 +6,7 @@ jobs:
|
|||
- uses: actions/checkout@v4
|
||||
|
||||
- id: forgejo
|
||||
uses: https://code.forgejo.org/actions/setup-forgejo@v3.0.3
|
||||
uses: https://code.forgejo.org/actions/setup-forgejo@v3.0.1
|
||||
with:
|
||||
user: testuser
|
||||
password: admin1234
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
on: [ pull_request, push ]
|
||||
jobs:
|
||||
tests:
|
||||
integration:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
|
@ -9,4 +9,4 @@ jobs:
|
|||
run: |
|
||||
testdata/forgejo-release-test.sh test_system_tea_bin
|
||||
testdata/forgejo-release-test.sh test_download_tea_bin
|
||||
testdata/forgejo-release-test.sh test_maybe_sign_release
|
||||
testdata/forgejo-release-test.sh test_maybe_sign_release
|
||||
|
|
@ -42,7 +42,7 @@ jobs:
|
|||
runs-on: docker
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/forgejo-release@v2.7.3
|
||||
- uses: actions/forgejo-release@v2.7.1
|
||||
with:
|
||||
direction: upload
|
||||
url: https://my-forgejo-instance.net
|
||||
|
|
@ -63,7 +63,7 @@ jobs:
|
|||
runs-on: docker
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/forgejo-release@v2.7.3
|
||||
- uses: actions/forgejo-release@v2.7.1
|
||||
with:
|
||||
direction: download
|
||||
url: https://my-forgejo-instance.net
|
||||
|
|
|
|||
|
|
@ -58,11 +58,13 @@ runs:
|
|||
using: "composite"
|
||||
steps:
|
||||
- if: ${{ inputs.release-notes-assistant }}
|
||||
uses: https://stackit.git.onstackit.cloud/actions/cache@v4
|
||||
uses: https://data.forgejo.org/actions/cache@v4
|
||||
with:
|
||||
key: rna-${{ inputs.repo }}
|
||||
path: ${{ forge.action_path }}/rna
|
||||
|
||||
- run: echo "${{ forge.action_path }}" >> $FORGEJO_PATH
|
||||
shell: bash
|
||||
- run: |
|
||||
export FORGEJO="${{ inputs.url }}"
|
||||
# A trailing / will mean http://forgejo//api/v1 is used
|
||||
|
|
@ -111,5 +113,5 @@ runs:
|
|||
echo -n "${{ inputs.gpg-passphrase }}" > $TMP_DIR/gpg-passphrase
|
||||
export GPG_PASSPHRASE="$TMP_DIR/gpg-passphrase"
|
||||
|
||||
${{ forge.action_path }}/forgejo-release.sh ${{ inputs.direction }}
|
||||
forgejo-release.sh ${{ inputs.direction }}
|
||||
shell: bash
|
||||
|
|
|
|||
|
|
@ -13,13 +13,13 @@ if ${VERBOSE:-false}; then set -x; fi
|
|||
: ${TMP_DIR:=$(mktemp -d)}
|
||||
: ${GNUPGHOME:=$TMP_DIR}
|
||||
: ${TEA_BIN:=$TMP_DIR/tea}
|
||||
: ${TEA_VERSION:=0.10.1}
|
||||
: ${TEA_VERSION:=0.9.0}
|
||||
: ${OVERRIDE:=false}
|
||||
: ${HIDE_ARCHIVE_LINK:=false}
|
||||
: ${RETRY:=1}
|
||||
: ${DELAY:=10}
|
||||
|
||||
RELEASE_NOTES_ASSISTANT_VERSION=v1.4.1 # renovate: datasource=forgejo-releases depName=forgejo/release-notes-assistant registryUrl=https://code.forgejo.org
|
||||
RELEASE_NOTES_ASSISTANT_VERSION=v1.4.0 # renovate: datasource=forgejo-releases depName=forgejo/release-notes-assistant registryUrl=https://code.forgejo.org
|
||||
|
||||
TAG_FILE="$TMP_DIR/tag$$.json"
|
||||
TAG_URL=$(echo "$TAG" | sed 's/\//%2F/g')
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- id: forgejo
|
||||
uses: https://code.forgejo.org/actions/setup-forgejo@v3.0.3
|
||||
uses: https://code.forgejo.org/actions/setup-forgejo@v3.0.1
|
||||
with:
|
||||
user: testuser
|
||||
password: admin1234
|
||||
|
|
|
|||
Loading…
Reference in a new issue