-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(cd): Adjust chill dreams to use just (#63)
* fix(cd): Adjust chill dreams to use just - Rename folders * feat(samples): Add Chill Dreams Sample * Update create-release pipeline
- Loading branch information
Showing
138 changed files
with
18,578 additions
and
25,686 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,10 +40,10 @@ jobs: | |
CI: "" | ||
run: | | ||
pushd "addon_starter/complete" | ||
npm run all | ||
npm run mcaddon | ||
popd | ||
pushd "casual_creator/chill_dreams/complete" | ||
npm run all | ||
npm run mcaddon | ||
popd | ||
- name: Get Package Version | ||
|
@@ -70,20 +70,9 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_samples_release.outputs.upload_url }} | ||
asset_path: ./addon_starter/complete/build/packages/addon_starter_complete.mcaddon | ||
asset_path: ./addon_starter/complete/dist/packages/aop_mobs.mcaddon | ||
asset_name: addon_starter_complete_v${{ steps.get-package-version.outputs.version }}.mcaddon | ||
asset_content_type: application/zip | ||
|
||
- name: Upload addon_starter_complete_source_v.zip to node_module release | ||
id: upload_addon_starter_complete_source_v | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_samples_release.outputs.upload_url }} | ||
asset_path: ./addon_starter/complete/build/packages/addon_starter_complete_source.zip | ||
asset_name: addon_starter_complete_source_v${{ steps.get-package-version.outputs.version }}.zip | ||
asset_content_type: application/zip | ||
|
||
- name: Upload chill_dreams_complete_v.mcaddon to node_module release | ||
id: chill_dreams_complete_v | ||
|
@@ -92,21 +81,10 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_samples_release.outputs.upload_url }} | ||
asset_path: ./casual_creator/chill_dreams/complete/build/packages/chill_dreams_complete.mcaddon | ||
asset_path: ./casual_creator/chill_dreams/complete/dist/packages/mamm_cds.mcaddon | ||
asset_name: chill_dreams_complete_v${{ steps.get-package-version.outputs.version }}.mcaddon | ||
asset_content_type: application/zip | ||
|
||
- name: Upload chill_dreams_complete_source_v.zip to node_module release | ||
id: chill_dreams_complete_source_v | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_samples_release.outputs.upload_url }} | ||
asset_path: ./casual_creator/chill_dreams/complete/build/packages/chill_dreams_complete_source.zip | ||
asset_name: chill_dreams_complete_source_v${{ steps.get-package-version.outputs.version }}.zip | ||
asset_content_type: application/zip | ||
|
||
|
||
- name: Commit version changes | ||
run: | | ||
VERSION=${{ toJSON(steps.version.outputs.result) }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
PROJECT_NAME="mamm_cds" | ||
MINECRAFT_PRODUCT="BedrockUWP" | ||
CUSTOM_DEPLOYMENT_PATH="" |
19 changes: 9 additions & 10 deletions
19
casual_creator/chill_dreams/1_dream_turkey/.prettierrc.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
{ | ||
"trailingComma": "es5", | ||
"tabWidth": 2, | ||
"semi": true, | ||
"singleQuote": false, | ||
"tabs": false, | ||
"backetSpacing": true, | ||
"arrowParens": "always", | ||
"printWidth": 120, | ||
"endOfLine": "auto" | ||
} | ||
"trailingComma": "es5", | ||
"tabWidth": 2, | ||
"semi": true, | ||
"singleQuote": false, | ||
"bracketSpacing": true, | ||
"arrowParens": "always", | ||
"printWidth": 120, | ||
"endOfLine": "auto" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
19 changes: 19 additions & 0 deletions
19
casual_creator/chill_dreams/1_dream_turkey/eslint.config.mjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import minecraftLinting from "eslint-plugin-minecraft-linting"; | ||
import tsParser from "@typescript-eslint/parser"; | ||
import ts from "@typescript-eslint/eslint-plugin"; | ||
export default [ | ||
{ | ||
files: ["scripts/**/*.ts"], | ||
languageOptions: { | ||
parser: tsParser, | ||
ecmaVersion: "latest", | ||
}, | ||
plugins: { | ||
ts, | ||
"minecraft-linting": minecraftLinting, | ||
}, | ||
rules: { | ||
"minecraft-linting/avoid-unnecessary-command": "error", | ||
}, | ||
}, | ||
]; |
Oops, something went wrong.