From abadc4de7bf3206bcdbbc9d20551923839401b1a Mon Sep 17 00:00:00 2001 From: TurtIeSocks <58572875+TurtIeSocks@users.noreply.github.com> Date: Wed, 29 Jun 2022 23:51:57 -0400 Subject: [PATCH] Automated Releases - Minor version bump - Sentry cli for releases --- .github/workflows/release.yml | 23 +++++++++++++++++++++++ package.json | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 000000000..fb5a2af6d --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,23 @@ +name: Release +on: [release] + +jobs: + sentry: + runs-on: ubuntu-latest + steps: + - name: Checkout Code + id: checkout-code + uses: actions/checkout@v3 + with: + fetch-depth: 2 + - name: Setup Node.js environment + uses: actions/setup-node@v2 + with: + node-version: 16 + cache: 'yarn' + + - name: Install Dependencies + run: yarn + + - name: Sentry Build + run: yarn release diff --git a/package.json b/package.json index 0eb097969..dcd278f47 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "reactmap", - "version": "1.2.13", + "version": "1.3.0", "description": "React based frontend map.", "main": "ReactMap.mjs", "author": "TurtIeSocks <58572875+TurtIeSocks@users.noreply.github.com>",