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 3a804af commit b58fc1cCopy full SHA for b58fc1c
.github/workflows/build.yml
@@ -1,6 +1,10 @@
1
name: Build
2
3
-on: [push, workflow_dispatch]
+on:
4
+ pull_request:
5
+ # push:
6
+ workflow_call:
7
+ workflow_dispatch:
8
9
jobs:
10
build:
.github/workflows/release.yml
@@ -0,0 +1,19 @@
+name: Release
+
+ push:
+ release:
+ types: [published]
+jobs:
+ call-build-workflow:
11
+ uses: ./.github/workflows/build.yml
12
13
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Test
17
+ run: |
18
+ pwd
19
+ ls -lah
0 commit comments