Improve and extend CI pipelines #96

Merged
lucas merged 3 commits from feat/ci into master 2023-04-05 16:27:53 +02:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit c63aee4aef - Show all commits

View file

@ -32,6 +32,7 @@ jobs:
file: repo/.ci/tasks/build.yml file: repo/.ci/tasks/build.yml
vars: vars:
target: msvc target: msvc
output: artifact
ref: ((.:ref)) ref: ((.:ref))
gitea_api_key: ((gitea_api_key)) gitea_api_key: ((gitea_api_key))
@ -45,5 +46,6 @@ jobs:
file: repo/.ci/tasks/build.yml file: repo/.ci/tasks/build.yml
vars: vars:
target: linux target: linux
output: artifact
ref: ((.:ref)) ref: ((.:ref))
gitea_api_key: ((gitea_api_key)) gitea_api_key: ((gitea_api_key))

View file

@ -11,14 +11,14 @@ inputs:
- name: repo - name: repo
outputs: outputs:
- name: artifact - name: ((output))
params: params:
CI: true CI: true
TARGET: ((target)) TARGET: ((target))
GITEA_API_KEY: ((gitea_api_key)) GITEA_API_KEY: ((gitea_api_key))
REF: ((ref)) REF: ((ref))
OUTPUT: artifact OUTPUT: ((output))
run: run:
path: .ci/util/run.sh path: .ci/util/run.sh