forgejo-release/testdata/nested-upload-download/.forgejo/workflows/test.yml

89 lines
2.8 KiB
YAML
Raw Normal View History

2023-04-01 11:12:56 +02:00
# SPDX-License-Identifier: MIT
2023-05-26 14:48:58 +02:00
2023-09-02 07:42:49 +02:00
#
# Upload (and download) a release to (and from) a project
# found in a Forgejo instance that is different from the one running the workflow
#
name: two Forgejo
2023-03-29 17:16:26 +02:00
on: [push]
jobs:
setup-forgejo:
runs-on: self-hosted
steps:
2025-04-13 08:31:08 +00:00
- uses: actions/checkout@v4
2023-03-29 17:16:26 +02:00
- id: forgejo
Update https://code.forgejo.org/actions/setup-forgejo action to v3.0.2 (#84) 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.1` -> `v3.0.2` | --- ### Release Notes <details> <summary>actions/setup-forgejo (https://code.forgejo.org/actions/setup-forgejo)</summary> ### [`v3.0.2`](https://code.forgejo.org/actions/setup-forgejo/compare/v3.0.1...v3.0.2) [Compare Source](https://code.forgejo.org/actions/setup-forgejo/compare/v3.0.1...v3.0.2) </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:eyJjcmVhdGVkSW5WZXIiOiI0MS42MS4wIiwidXBkYXRlZEluVmVyIjoiNDEuNjEuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Reviewed-on: https://code.forgejo.org/actions/forgejo-release/pulls/84 Co-authored-by: Renovate Bot <bot@kriese.eu> Co-committed-by: Renovate Bot <bot@kriese.eu>
2025-08-15 09:27:50 +00:00
uses: https://code.forgejo.org/actions/setup-forgejo@v3.0.2
2023-03-29 17:16:26 +02:00
with:
2023-03-29 19:20:39 +02:00
user: testuser
2023-03-29 17:16:26 +02:00
password: admin1234
lxc-ip-prefix: 10.0.15
2023-09-02 07:42:49 +02:00
image-version: 1.20
- id: testrepo
run: |
url=http://testuser:admin1234@${{ steps.forgejo.outputs.host-port }}
forgejo-test-helper.sh push testrepo $url testuser testrepo > /tmp/output
echo sha=$(forgejo-test-helper.sh branch_tip $url testuser/testrepo main) >> $GITHUB_OUTPUT
2023-03-29 17:16:26 +02:00
- id: release-upload
uses: SELF@vTest
with:
direction: upload
url: ${{ steps.forgejo.outputs.url }}
2023-03-29 19:20:39 +02:00
repo: testuser/testrepo
2023-03-29 17:16:26 +02:00
tag: v1.0
sha: ${{ steps.testrepo.outputs.sha }}
2023-03-29 17:16:26 +02:00
token: ${{ steps.forgejo.outputs.token }}
release-dir: upload-dir
2023-03-29 23:59:02 +02:00
release-notes: "RELEASE NOTES"
2023-03-29 17:16:26 +02:00
verbose: true
- id: release-upload-override
uses: SELF@vTest
with:
direction: upload
url: ${{ steps.forgejo.outputs.url }}
repo: testuser/testrepo
tag: v1.0
sha: ${{ steps.testrepo.outputs.sha }}
token: ${{ steps.forgejo.outputs.token }}
release-dir: upload-dir
release-notes: "RELEASE NOTES"
override: true
verbose: true
- id: release-upload-v2
uses: SELF@vTest
with:
direction: upload
url: ${{ steps.forgejo.outputs.url }}
repo: testuser/testrepo
tag: v2.0
sha: ${{ steps.testrepo.outputs.sha }}
token: ${{ steps.forgejo.outputs.token }}
release-dir: upload-dir-v2
release-notes: "RELEASE NOTES V2"
verbose: true
2023-03-29 17:16:26 +02:00
- id: release-download
uses: SELF@vTest
with:
direction: download
url: ${{ steps.forgejo.outputs.url }}
2023-03-29 19:20:39 +02:00
repo: testuser/testrepo
2023-03-29 17:16:26 +02:00
tag: v1.0
token: ${{ steps.forgejo.outputs.token }}
release-dir: download-dir
verbose: true
- run: |
diff -u upload-dir download-dir
- id: release-download-latest
uses: SELF@vTest
with:
direction: download
url: ${{ steps.forgejo.outputs.url }}
repo: testuser/testrepo
token: ${{ steps.forgejo.outputs.token }}
release-dir: download-dir-v2
download-latest: true
verbose: true
- run: |
diff -u upload-dir-v2 download-dir-v2
2023-09-02 10:48:52 +02:00
- if: failure()
run: docker logs forgejo