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>",