Skip to content

Commit 2d99ffb

Browse files
authored
Merge pull request #527 from WatWowMap/release-action
Automated Releases
2 parents bf6fbfa + abadc4d commit 2d99ffb

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

.github/workflows/release.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Release
2+
on: [release]
3+
4+
jobs:
5+
sentry:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Checkout Code
9+
id: checkout-code
10+
uses: actions/checkout@v3
11+
with:
12+
fetch-depth: 2
13+
- name: Setup Node.js environment
14+
uses: actions/setup-node@v2
15+
with:
16+
node-version: 16
17+
cache: 'yarn'
18+
19+
- name: Install Dependencies
20+
run: yarn
21+
22+
- name: Sentry Build
23+
run: yarn release

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reactmap",
3-
"version": "1.2.13",
3+
"version": "1.3.0",
44
"description": "React based frontend map.",
55
"main": "ReactMap.mjs",
66
"author": "TurtIeSocks <58572875+TurtIeSocks@users.noreply.github.com>",

0 commit comments

Comments
 (0)