Skip to content

Commit

Permalink
Merge pull request #659 from pwatson100/RT-V12
Browse files Browse the repository at this point in the history
FVTT V12 only version
  • Loading branch information
pwatson100 authored Jun 18, 2024
2 parents 41cca66 + 0a38270 commit 4e0cd90
Show file tree
Hide file tree
Showing 60 changed files with 122,439 additions and 8,921 deletions.
1 change: 0 additions & 1 deletion .gitattributes

This file was deleted.

24 changes: 22 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,30 @@ on:
types: [published]

jobs:
build:
buildPacks:
# The type of runner that the job will run on. This must be ubuntu for the zip command to work.
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
# Each step runs a single command using the runners shell.
# 1. Checkout our repository so we can do things on it.
- name: Checkout
uses: actions/checkout@v4
# 2. Make sure node is set up. This may be an unecessary step.
- name: Node Setup
uses: actions/setup-node@v3
with:
node-version: 18
# 3. Install the FoundryVTT CLI.
- run: npm install -g @foundryvtt/foundryvtt-cli
# 4. Configure the datapath as the github workspace variable.
- run: fvtt configure set "dataPath" ${GITHUB_WORKSPACE}
# 5. Tell the FVTT CLI that we are working on a "system" package.
- run: fvtt package workon fvtt package workon "symbaroum" --type "System"
# 6-11. Package each folder of source json files into the appropriate LevelDB pack.
- run: fvtt package pack "symbaroum" --in "src/packs/symbaroum" --out "packs"
- run: fvtt package pack "systemuserguides" --in "src/packs/systemuserguides" --out "packs"

#Substitute the Manifest and Download URLs in the module.json
- name: Substitute Manifest and Download Links For Versioned Ones
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ node_modules
.vscode
foundry.js
.eslintrc.js
Toolbox
Toolbox
/packs/systemuserguides
/packs/symbaroum
3 changes: 3 additions & 0 deletions Release_Notes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version 5.0
* Updated for Foundry vtt version 12

Version 4.5

* Updated corruption threshold bonus bug #652
Expand Down
Loading

0 comments on commit 4e0cd90

Please sign in to comment.