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 6c0a934Copy full SHA for 6c0a934
.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,17 @@
+name: Release
+
+ release:
+ types: [published]
+jobs:
+ call-build-workflow:
+ uses: ./.github/workflows/build.yml
11
12
13
+ runs-on: ubuntu-latest
14
+ - name: Test
15
+ run: |
16
+ pwd
17
+ ls -lah
0 commit comments