mirror of
https://code.forgejo.org/actions/forgejo-release.git
synced 2025-07-06 07:43:44 +00:00
Some checks failed
/ integration (push) Has been cancelled
As a proposal solution to this issue: https://code.forgejo.org/actions/forgejo-release/issues/51 We use the system installed tea binary if available or download it as it was done before if not. The location of the binary is stored in a new variable `$TEA_BIN` which replaces the need for the `$ BIN_DIR` location. I tested it on Alpine and Debian. Co-authored-by: Rayan Mestiri <rayan.mestiri@gmail.com> Co-authored-by: Rayan MESTIRI <rayan.mestiri@NLGRSSL600K.ratpsmart.local> Reviewed-on: https://code.forgejo.org/actions/forgejo-release/pulls/53 Reviewed-by: earl-warren <earl-warren@noreply.code.forgejo.org> Co-authored-by: sheik <sheik@noreply.code.forgejo.org> Co-committed-by: sheik <sheik@noreply.code.forgejo.org>
12 lines
No EOL
392 B
YAML
12 lines
No EOL
392 B
YAML
on: [ pull_request, push ]
|
|
jobs:
|
|
integration:
|
|
runs-on: docker
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Unit tests of the supporting script forgejo-release.sh
|
|
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 |