mirror of
https://code.forgejo.org/actions/forgejo-release.git
synced 2025-07-17 11:48:20 +02:00

Some checks failed
/ integration (push) Has been cancelled
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [https://code.forgejo.org/actions/setup-forgejo](https://code.forgejo.org/actions/setup-forgejo) | action | patch | `v3.0.0` -> `v3.0.1` | --- ### Release Notes <details> <summary>actions/setup-forgejo (https://code.forgejo.org/actions/setup-forgejo)</summary> ### [`v3.0.1`](https://code.forgejo.org/actions/setup-forgejo/compare/v3.0.0...v3.0.1) [Compare Source](https://code.forgejo.org/actions/setup-forgejo/compare/v3.0.0...v3.0.1) </details> --- ### Configuration 📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC), Automerge - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMy4yIiwidXBkYXRlZEluVmVyIjoiNDEuMjMuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Reviewed-on: https://code.forgejo.org/actions/forgejo-release/pulls/61 Reviewed-by: earl-warren <earl-warren@noreply.code.forgejo.org> Co-authored-by: Renovate Bot <bot@kriese.eu> Co-committed-by: Renovate Bot <bot@kriese.eu>
65 lines
3 KiB
YAML
65 lines
3 KiB
YAML
on: [ pull_request, push ]
|
|
jobs:
|
|
integration:
|
|
runs-on: self-hosted
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- id: forgejo
|
|
uses: https://code.forgejo.org/actions/setup-forgejo@v3.0.1
|
|
with:
|
|
user: testuser
|
|
password: admin1234
|
|
image-version: 9
|
|
|
|
- name: push self
|
|
run: |
|
|
forgejo-test-helper.sh push_self_action http://testuser:admin1234@${{ steps.forgejo.outputs.host-port }} testuser forgejo-release vTest
|
|
|
|
- name: testdata/upload-download
|
|
run: |
|
|
export LOOP_DELAY=30
|
|
export FORGEJO_RUNNER_LOGS="${{ steps.forgejo.outputs.runner-logs }}"
|
|
forgejo-test-helper.sh run_workflow testdata/upload-download http://testuser:admin1234@${{ steps.forgejo.outputs.host-port }} testuser upload-download forgejo-release "${{ steps.forgejo.outputs.token }}"
|
|
|
|
set -ex
|
|
export FORGEJO="${{ steps.forgejo.outputs.url }}"
|
|
curl --fail -sS $FORGEJO/api/v1/repos/testuser/upload-download/releases/tags/v2.0 > /tmp/v2.json
|
|
EXPECTED='No shell expansion should on these notes:
|
|
- $(some_command)
|
|
- `other_commend`
|
|
- "double quoted" and '\''single quoted'\'' strings
|
|
- \backslash escape
|
|
- !exclamation_mark'
|
|
test "$EXPECTED" = "$(jq -r .body < /tmp/v2.json)"
|
|
|
|
test $(cat /tmp/v2.json | jq -r .hide_archive_links) = false
|
|
|
|
curl --fail -sS $FORGEJO/api/v1/repos/testuser/upload-download/releases/tags/v1.0 > /tmp/v1.json
|
|
cat /tmp/v1.json | jq -r .body | grep '<!--start release-notes-assistant-->'
|
|
|
|
test $(cat /tmp/v1.json | jq -r .hide_archive_links) = true
|
|
|
|
- name: testdata/upload-download-private
|
|
run: |
|
|
export LOOP_DELAY=30
|
|
export FORGEJO_RUNNER_LOGS="${{ steps.forgejo.outputs.runner-logs }}"
|
|
curl -X 'POST' 'http://testuser:admin1234@${{ steps.forgejo.outputs.host-port }}/api/v1/user/repos' -H 'accept: application/json' -H 'Content-Type: application/json' -d '{"name": "upload-download-private","private": true}'
|
|
forgejo-test-helper.sh run_workflow testdata/upload-download http://testuser:admin1234@${{ steps.forgejo.outputs.host-port }} testuser upload-download-private forgejo-release "${{ steps.forgejo.outputs.token }}"
|
|
|
|
- name: testdata/nested-upload-download
|
|
run: |
|
|
export LOOP_DELAY=30
|
|
export FORGEJO_RUNNER_LOGS="${{ steps.forgejo.outputs.runner-logs }}"
|
|
forgejo-test-helper.sh run_workflow testdata/nested-upload-download http://testuser:admin1234@${{ steps.forgejo.outputs.host-port }} testuser nested-upload-download forgejo-release "${{ steps.forgejo.outputs.token }}"
|
|
|
|
- name: test forgejo-release.sh
|
|
run: |
|
|
set -ex
|
|
export FORGEJO="${{ steps.forgejo.outputs.url }}"
|
|
export TOKEN="${{ steps.forgejo.outputs.token }}"
|
|
export VERBOSE=true
|
|
testdata/forgejo-release-test.sh test_run testuser otherrepo
|
|
|
|
- if: failure()
|
|
run: docker logs forgejo
|