Skip to content

Commit 6af5a6d

Browse files
committed
prepare artifacts
1 parent 6587586 commit 6af5a6d

24 files changed

+11524
-12
lines changed

.github/workflows/deployment.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
build:
1010

11-
runs-on: ubuntu-latest
11+
runs-on: windows-latest
1212

1313
steps:
1414
- uses: actions/checkout@v3
@@ -39,7 +39,6 @@ jobs:
3939
with:
4040
folder: build/distributions
4141

42-
4342
release:
4443
needs: build
4544
runs-on: ubuntu-latest
@@ -50,16 +49,16 @@ jobs:
5049
steps:
5150
- name: Create Release
5251
uses: actions/create-release@v1
53-
env:
54-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
52+
# env:
53+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5554
with:
5655
release_name: ${{ github.ref_name }}
5756
tag_name: ${{ github.ref_name }}
5857

5958
- name: Upload Release APK
60-
uses: actions/upload-release-asset@v1.0.1
61-
env:
62-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
59+
uses: actions/upload-release-asset@v1.1.3
60+
# env:
61+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6362
with:
6463
upload_url: ${{ steps.create_release.outputs.upload_url }}
6564
asset_path: apk/tetris-mp-release.apk

artifacts/android/tetris-release.apk

2.23 MB
Binary file not shown.
53.1 MB
Binary file not shown.

artifacts/web/META-INF/MANIFEST.MF

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Manifest-Version: 1.0
2+

artifacts/web/Roboto-Regular.ttf

164 KB
Binary file not shown.

artifacts/web/index.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Tetris MP</title>
6+
<script src="skiko.js"> </script>
7+
<link type="text/css" rel="stylesheet" href="styles.css" />
8+
</head>
9+
<body style="background-color:black;">
10+
<div>
11+
<canvas id="ComposeTarget" width="450" height="800"></canvas>
12+
</div>
13+
<script src="tetris-mp.js"> </script>
14+
</body>
15+
</html>

0 commit comments

Comments
 (0)