Skip to content

Commit

Permalink
Setup workflow to use python for pack compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
Jagusti committed Jun 11, 2024
1 parent cc2cf54 commit 0386438
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,20 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Get Foundry CLI
- name: Install FVTT CLI
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 18

# Compile compendium packs
node-version: '18'
- run: npm i -g @foundryvtt/foundryvtt-cli

# Seutup python and compile compendium packs
- name: Setup python
uses: actions/setup-python@v3
with:
python-version: '3.9'
- run: python pack_util.py pack

# Get Module ID
Expand Down

0 comments on commit 0386438

Please sign in to comment.