Skip to content

Commit

Permalink
Update manifest and GitHub workflow for public 0.5.8 release
Browse files Browse the repository at this point in the history
  • Loading branch information
aaclayton committed Jul 9, 2023
1 parent 6dd3e87 commit 86fc4f2
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 4 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ name: System Release Build

env:
node_version: 18
latest_manifest_url: "https://github.com/${{github.repository}}/releases/latest/download/system.json"
release_download_url: "https://github.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/system.zip"

on:
release:
Expand Down Expand Up @@ -45,10 +47,21 @@ jobs:
- name: Compile
run: npm run compile

# Modify system.json with values specific to the release.
- name: Modify System Manifest
id: sub_manifest_link_version
uses: cschleiden/replace-tokens@v1
with:
files: 'system.json'
env:
MANIFEST: ${{ env.latest_manifest_url }}
DOWNLOAD: ${{ env.release_download_url }}

# Create a "system.zip" archive containing all the system's required files.
- name: Create System Archive
run: |
zip --recurse-paths ./system.zip \
LICENSE \
system.json \
template.json \
crucible.mjs \
Expand Down
23 changes: 23 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Crucible Game System License

Copyright (c) 2023 Foundry Virtual Tabletop

The Crucible Game System is provided with permission only to install and
use the game system within the Foundry Virtual Tabletop software.
No permission is granted at this time to modify, publish, distribute,
sell, or otherwise use the software or its data in any other way.

Once the Crucible Game System is no longer in the early playtest period
this license will be replaced with one which establishes more open terms
for the use of this software code and its corresponding game data.

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# The Crucible Game System

![Crucible Logo](https://raw.githubusercontent.com/foundryvtt/crucible/master/ui/banner.webp)

Crucible is an innovative and modern tabletop role-playing game system built exclusively for Foundry Virtual Tabletop as a digital platform. From the ground up, Crucible is designed to leverage the unique capabilities of Foundry VTT to provide gamemasters with a powerful toolset and effortless layers of automation, allowing gamemasters and players to focus on what matters most: telling a compelling story.

See https://foundryvtt.com/packages/crucible

# Contribution Policy
The Crucible game system is in early development and does not offer an open-source license or contribution policy at this time. Such a policy will be added as the system progresses.
9 changes: 5 additions & 4 deletions system.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"id": "crucible",
"title": "Crucible",
"description": "Crucible is an innovative and modern tabletop role-playing game system built exclusively for Foundry Virtual Tabletop as a digital platform. From the ground up, Crucible is designed to leverage the unique capabilities of Foundry VTT to provide gamemasters with a powerful toolset and effortless layers of automation, allowing gamemasters and players to focus on what matters most: telling a compelling story.",
"version": "0.5.7",
"version": "0.5.8",
"manifest": "#{MANIFEST}#",
"download": "#{DOWNLOAD}#",
"url": "https://foundryvtt.com/packages/crucible",
"authors": [
{
Expand All @@ -15,6 +17,7 @@
"minimum": 11,
"verified": 11
},
"license": "LICENSE",
"esmodules": ["crucible.mjs"],
"styles": ["styles/crucible.css"],
"packs": [
Expand Down Expand Up @@ -121,7 +124,5 @@
"background": "systems/crucible/ui/background.webp",
"socket": true,
"primaryTokenAttribute": "resources.health",
"secondaryTokenAttribute": "resources.morale",
"manifest": "https://foundryvtt.s3.us-west-2.amazonaws.com/modules/crucible/system.json",
"protected": false
"secondaryTokenAttribute": "resources.morale"
}

0 comments on commit 86fc4f2

Please sign in to comment.