We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3a60d9 commit 6213de4Copy full SHA for 6213de4
.github/workflows/ci_pipeline.yml
@@ -8,6 +8,32 @@ on:
8
9
jobs:
10
11
+ trigger:
12
+ runs-on: ubuntu-latest
13
+
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v3
17
18
+ - name: Zip
19
+ run: |
20
+ ls -artl
21
+ zip pySDC
22
23
24
+ - uses: actions/upload-artifact@v3
25
+ with:
26
+ name: pySDC
27
+ path: pySDC.zip
28
29
+ - name: trigger Gitlab CI
30
31
+ curl --request POST \
32
+ --form token=${{ secrets.GITLAB_TRIGGER_TOKEN }} \
33
+ --form ref=main \
34
+ --form "variables[TEST]=true" \
35
+ "https://gitlab.hzdr.de/api/v4/projects/6200/trigger/pipeline"
36
37
lint:
38
runs-on: ubuntu-latest
39
0 commit comments