This reverts commit 1583fdc4cb
.
This commit is contained in:
parent
1583fdc4cb
commit
53ef64f61b
|
@ -1,9 +0,0 @@
|
||||||
FROM python:3.12-slim
|
|
||||||
|
|
||||||
# Set the working directory
|
|
||||||
WORKDIR /action/workspace
|
|
||||||
|
|
||||||
# Copy the script into the container
|
|
||||||
COPY . /action/workspace/
|
|
||||||
|
|
||||||
ENTRYPOINT ["/action/workspace/entrypoint.sh"]
|
|
|
@ -1,6 +0,0 @@
|
||||||
name: "Auto-Bump Version File"
|
|
||||||
author: "Franck Trouillez"
|
|
||||||
description: "Automatically bump the package.json and package-file.json file."
|
|
||||||
runs:
|
|
||||||
using: 'docker'
|
|
||||||
image: 'Dockerfile'
|
|
|
@ -1,27 +0,0 @@
|
||||||
import json
|
|
||||||
|
|
||||||
# Read package.json
|
|
||||||
with open('package.json', 'r') as package_file:
|
|
||||||
package_data = json.load(package_file)
|
|
||||||
|
|
||||||
# Read package-lock.json
|
|
||||||
with open('package-lock.json', 'r') as lock_file:
|
|
||||||
lock_data = json.load(lock_file)
|
|
||||||
|
|
||||||
# Bump version
|
|
||||||
version = package_data['version']
|
|
||||||
version_parts = version.split('.')
|
|
||||||
version_parts[-1] = str(int(version_parts[-1]) + 1)
|
|
||||||
new_version = '.'.join(version_parts)
|
|
||||||
|
|
||||||
# Update package.json
|
|
||||||
package_data['version'] = new_version
|
|
||||||
with open('package.json', 'w') as package_file:
|
|
||||||
json.dump(package_data, package_file, indent=2)
|
|
||||||
|
|
||||||
# Update package-lock.json
|
|
||||||
lock_data['version'] = new_version
|
|
||||||
with open('package-lock.json', 'w') as lock_file:
|
|
||||||
json.dump(lock_data, lock_file, indent=2)
|
|
||||||
|
|
||||||
print(f'Version bumped to {new_version}')
|
|
|
@ -1,3 +0,0 @@
|
||||||
#!/bin/sh -l
|
|
||||||
|
|
||||||
python /action/workspace/bump-version.py
|
|
|
@ -1,22 +0,0 @@
|
||||||
name: Bump version
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
bump-version:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Bump version file
|
|
||||||
uses: ./.github/actions/bump-version
|
|
||||||
- name: Commit and push
|
|
||||||
run: |
|
|
||||||
git config --local user.email "auto-bump-version@github-actions.com"
|
|
||||||
git config --local user.name "Auto Bump Version Action"
|
|
||||||
git add .
|
|
||||||
git commit -m "[ABV] Bump version"
|
|
||||||
git push
|
|
|
@ -19,9 +19,6 @@ If you have the motivation and experience with Typescript/Javascript (or are wil
|
||||||
#### Linting
|
#### Linting
|
||||||
We're using ESLint as our common linter and formatter. It will run automatically during the pre-commit hook but if you would like to manually run it, use the `npm run eslint` script.
|
We're using ESLint as our common linter and formatter. It will run automatically during the pre-commit hook but if you would like to manually run it, use the `npm run eslint` script.
|
||||||
|
|
||||||
#### Version management
|
|
||||||
If you're making a bigger change, it is recommended to bump the minor version in the `package.json` file. If you're making an even bigger change, bump the major version. Patch versions are bumped automatically by the CI/CD pipeline.
|
|
||||||
|
|
||||||
### ❔ FAQ
|
### ❔ FAQ
|
||||||
|
|
||||||
**How do I test a new _______?**
|
**How do I test a new _______?**
|
||||||
|
|
|
@ -15,7 +15,6 @@ export default class TitleUiHandler extends OptionSelectUiHandler {
|
||||||
private eventDisplay: TimedEventDisplay;
|
private eventDisplay: TimedEventDisplay;
|
||||||
|
|
||||||
private titleStatsTimer: NodeJS.Timeout;
|
private titleStatsTimer: NodeJS.Timeout;
|
||||||
private versionLabel: Phaser.GameObjects.Text;
|
|
||||||
|
|
||||||
constructor(scene: BattleScene, mode: Mode = Mode.TITLE) {
|
constructor(scene: BattleScene, mode: Mode = Mode.TITLE) {
|
||||||
super(scene, mode);
|
super(scene, mode);
|
||||||
|
@ -41,9 +40,6 @@ export default class TitleUiHandler extends OptionSelectUiHandler {
|
||||||
this.titleContainer.add(this.eventDisplay);
|
this.titleContainer.add(this.eventDisplay);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.versionLabel = addTextObject(this.scene, 0, 0, this.scene.game.config.gameVersion, TextStyle.MESSAGE, { fontSize: "54px" });
|
|
||||||
this.titleContainer.add(this.versionLabel);
|
|
||||||
|
|
||||||
this.playerCountLabel = addTextObject(this.scene, (this.scene.game.canvas.width / 6) - 2, (this.scene.game.canvas.height / 6) - 109, `? ${i18next.t("menu:playersOnline")}`, TextStyle.MESSAGE, { fontSize: "54px" });
|
this.playerCountLabel = addTextObject(this.scene, (this.scene.game.canvas.width / 6) - 2, (this.scene.game.canvas.height / 6) - 109, `? ${i18next.t("menu:playersOnline")}`, TextStyle.MESSAGE, { fontSize: "54px" });
|
||||||
this.playerCountLabel.setOrigin(1, 0);
|
this.playerCountLabel.setOrigin(1, 0);
|
||||||
this.titleContainer.add(this.playerCountLabel);
|
this.titleContainer.add(this.playerCountLabel);
|
||||||
|
|
Loading…
Reference in New Issue