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