unpixel/.github/workflows/release.yml

26 lines
508 B
YAML
Raw Normal View History

2021-04-07 13:00:09 +02:00
name: Main
on:
2022-01-21 16:34:41 +01:00
push:
tags:
- "v*.*.*"
2021-04-07 13:00:09 +02:00
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
2021-05-15 16:56:38 +02:00
node-version: "14"
2022-01-09 19:21:52 +01:00
- name: PNPM
run: npm i -g pnpm
2021-04-07 16:39:43 +02:00
- name: Install dependencies
2022-01-09 19:21:52 +01:00
run: pnpm install --frozen-lockfile
2021-04-07 13:00:09 +02:00
- name: Build
2022-01-09 19:21:52 +01:00
run: pnpm run dist
2021-04-07 13:00:09 +02:00
env:
2021-05-15 16:56:38 +02:00
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2022-01-21 16:45:35 +01:00
EP_PRE_RELEASE: true