Skip to content

Prepare to release v4.7.1 #70

Prepare to release v4.7.1

Prepare to release v4.7.1 #70

Workflow file for this run

# The instructions in this file can be tested locally using `gh act` (https://github.com/nektos/act).
#
# Any changes should also be reflected in bin/simulate-release.
name: Release
on:
push:
tags:
- "v*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8.11.0
- uses: actions/setup-node@v3
with:
node-version: "20"
cache: "pnpm"
- run: pnpm install
- run: pnpm exec elm-verify-examples
- run: pnpm exec elm-test
- run: pnpm run build
- run: pnpm run build:worker
- name: Prepare release
run: ./bin/prepare-release
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: release/*