Skip to content

Merge branch 'release/3.0.0' #72

Merge branch 'release/3.0.0'

Merge branch 'release/3.0.0' #72

Workflow file for this run

name: Deploy Prep
on:
push:
branches:
- master
- release/**
pull_request:
jobs:
deploy_prep:
name: Deploy Prep
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache node modules
uses: actions/setup-node@v2
with:
node-version: '18'
cache: 'yarn'
- name: Install node modules
run: yarn install
- name: Build distributables
run: yarn build
- name: Generate tarball artifact
run: yarn pack
- name: Upload artifact for release via getsentry/craft
uses: actions/upload-artifact@v2
with:
name: ${{ github.sha }}
path: ${{ github.workspace }}/*.tgz
if-no-files-found: error