screeps 4.3.0-beta.3 → 4.3.0-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
name: Build platform packages
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
tags:
|
|
5
|
+
- 'build-package'
|
|
6
|
+
jobs:
|
|
7
|
+
build:
|
|
8
|
+
strategy:
|
|
9
|
+
matrix:
|
|
10
|
+
include:
|
|
11
|
+
- os: ubuntu-latest
|
|
12
|
+
platform: linux
|
|
13
|
+
- os: macos-latest
|
|
14
|
+
platform: macos
|
|
15
|
+
- os: windows-latest
|
|
16
|
+
platform: windows
|
|
17
|
+
runs-on: ${{ matrix.os }}
|
|
18
|
+
permissions:
|
|
19
|
+
contents: read
|
|
20
|
+
steps:
|
|
21
|
+
- name: ⤵️ Checkout
|
|
22
|
+
uses: actions/checkout@v4
|
|
23
|
+
- name: 🔨 Setup node
|
|
24
|
+
uses: actions/setup-node@v4
|
|
25
|
+
with:
|
|
26
|
+
node-version: '24.x'
|
|
27
|
+
- name: 👷 Install
|
|
28
|
+
run: npm ci
|
|
29
|
+
- name: 📦️ Upload package
|
|
30
|
+
uses: actions/upload-artifact@v4
|
|
31
|
+
with:
|
|
32
|
+
name: package-${{ matrix.platform }}
|
|
33
|
+
path: node_modules/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "screeps",
|
|
3
|
-
"version": "4.3.0-beta.
|
|
3
|
+
"version": "4.3.0-beta.4",
|
|
4
4
|
"description": "A standalone server for programming game Screeps",
|
|
5
5
|
"main": "package.json",
|
|
6
6
|
"bin": {
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@screeps/backend": "3.3.0-beta",
|
|
20
20
|
"@screeps/common": "2.16.0-beta",
|
|
21
|
-
"@screeps/driver": "5.3.0-beta",
|
|
21
|
+
"@screeps/driver": "5.3.0-beta.2",
|
|
22
22
|
"@screeps/engine": "4.3.0-beta",
|
|
23
|
-
"@screeps/launcher": "4.2.0-beta",
|
|
23
|
+
"@screeps/launcher": "4.2.0-beta.2",
|
|
24
24
|
"@screeps/pathfinding": "0.4.17",
|
|
25
25
|
"@screeps/storage": "5.1.3-beta",
|
|
26
26
|
"node_modules-path": "2.0.7"
|