File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,17 +23,42 @@ jobs:
2323 - name : Set env
2424 run : echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
2525
26- - name : Bump manifest version
27- run : node .github/actions/bump-manifest.js
28- env :
29- TGT_RELEASE_VERSION : ${{ github.ref_name }}
26+ - uses : pnpm/action-setup@v2.0.1
27+ with :
28+ version : 8.6.1
29+
30+ - name : Setup node
31+ uses : actions/setup-node@v2
32+ with :
33+ node-version : 16.x
34+ cache : ' pnpm'
35+ cache-dependency-path : ' web/pnpm-lock.yaml'
36+
37+ - name : Set env
38+ run : echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
39+
40+ - name : Install dependencies
41+ run : pnpm install
42+ working-directory : web
43+
44+ - name : Install package dependencies
45+ run : pnpm install
46+ working-directory : package
47+
48+ - name : Bump package version
49+ run : pnpm version ${{ github.ref_name }}
50+ working-directory : package
3051
3152 - name : Run build
3253 run : pnpm build
33- working-directory : web
3454 env :
3555 CI : false
3656
57+ - name : Bump manifest version
58+ run : node .github/actions/bump-manifest.js
59+ env :
60+ TGT_RELEASE_VERSION : ${{ github.ref_name }}
61+
3762 - name : Push manifest change
3863 uses : EndBug/add-and-commit@v8
3964 with :
Original file line number Diff line number Diff line change 1+ CREATE TABLE reports (
2+ reportId INT PRIMARY KEY AUTO_INCREMENT,
3+ report TEXT NOT NULL ,
4+ player INT NOT NULL ,
5+ playerName VARCHAR (255 ) NOT NULL ,
6+ active INT NOT NULL DEFAULT 1 ,
7+ )
You can’t perform that action at this time.
0 commit comments