Skip to content

1.7.13

1.7.13 #9

name: Make Release Artifacts
on:
pull_request:
types:
- reopened
- opened
- synchronize
jobs:
run:
if: startsWith( github.head_ref, 'release/')
uses: rokucommunity/workflows/.github/workflows/make-release-artifacts.yml@master
with:
branch: ${{ github.event.pull_request.head.ref }}
node-version: "14.19.0"
artifact-paths: "./*.tgz" # "*.vsix"
secrets: inherit
success-or-skip:
if: always()
needs: [run]
runs-on: ubuntu-latest
steps:
- run: if [ "${{ needs.run.result }}" = "failure" ]; then exit 1; fi