Data Request API helper #10

Merged
Oliver merged 94 commits from feat/data-requests into main 2025-11-22 02:51:15 +00:00
Showing only changes of commit 5c030c680d - Show all commits

View file

@ -1,6 +1,7 @@
on: [ workflow_dispatch ] on: [ workflow_dispatch ]
jobs: jobs:
create-artifacts: create-artifacts:
name: "Create artifacts"
runs-on: act runs-on: act
steps: steps:
- name: Checkout code - name: Checkout code
@ -38,10 +39,11 @@ jobs:
forgejo-release: forgejo-release:
name: "Create Forgejo release"
runs-on: act runs-on: act
needs: needs:
- create-artifacts - create-artifacts
if: var.RELEASE_TO_FORGEJO == true if: vars.RELEASE_TO_FORGEJO == true
steps: steps:
- name: Download artifacts - name: Download artifacts
uses: actions/download-artifact@v4 uses: actions/download-artifact@v4
@ -63,9 +65,10 @@ jobs:
github-release: github-release:
runs-on: act runs-on: act
name: "Create Github release"
needs: needs:
- create-artifacts - create-artifacts
if: var.RELEASE_TO_GITHUB == true if: vars.RELEASE_TO_GITHUB == true
steps: steps:
- name: Download artifacts - name: Download artifacts
uses: actions/download-artifact@v4 uses: actions/download-artifact@v4