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 25c1f8b commit e543ab3Copy full SHA for e543ab3
.github/workflows/web_build.yml
@@ -1,14 +1,20 @@
1
-###
2
-name: Automatic web build
+name: "Automatic web build"
+
3
on:
4
push:
5
branches:
6
- - master
+ - "master"
7
8
jobs:
9
build_web_site:
- runs-on: [ web-builder-22.04 ]
10
+ runs-on: "ubuntu-latest"
11
steps:
- - name: Build_web
12
- run: /scripts/build_web.sh
13
-
14
+ - name: "Trigger deployment workflow"
+ run: |
+ gh workflow run deploy-openssl-library-org.yml
15
+ sleep 3
16
+ RUN_ID=$(gh run list -w deploy-openssl-library-org.yml -L 1 --json databaseId -q ".[0].databaseId")
17
+ gh run watch ${RUN_ID} --exit-status
18
+ env:
19
+ GH_REPO: "openssl/openssl-web"
20
+ GH_TOKEN: ${{ secrets.OPENSSL_MACHINE_TOKEN }}
0 commit comments