We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6d752e commit d30fbfdCopy full SHA for d30fbfd
.github/workflows/make-release-artifacts.yml
@@ -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