Skip to content

Commit d30fbfd

Browse files
Create make-release-artifacts.yml
1 parent c6d752e commit d30fbfd

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Make Release Artifacts
2+
3+
on:
4+
pull_request:
5+
types:
6+
- reopened
7+
- opened
8+
- synchronize
9+
10+
jobs:
11+
run:
12+
if: startsWith( github.head_ref, 'release/')
13+
uses: rokucommunity/workflows/.github/workflows/make-release-artifacts.yml@master
14+
with:
15+
branch: ${{ github.event.pull_request.head.ref }}
16+
node-version: "16.20.2"
17+
artifact-paths: "./*.tgz" # "*.vsix"
18+
workflow-ref: 'develop'
19+
secrets: inherit
20+
21+
success-or-skip:
22+
if: always()
23+
needs: [run]
24+
runs-on: ubuntu-latest
25+
steps:
26+
- run: if [ "${{ needs.run.result }}" = "failure" ]; then exit 1; fi

0 commit comments

Comments
 (0)