Update Credits (#305) #7
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
name: RSI Validator Secrets | |
on: | |
push: | |
branches: [ master, staging, trying ] | |
paths: | |
- '**.rsi/**' | |
jobs: | |
validate_rsis: | |
name: Validate RSIs | |
if: github.actor != 'PJBot' && github.event.pull_request.draft == false && github.actor != 'DeltaV-Bot' && github.actor != 'SimpleStation14' && github.actor != 'Lost-Paradise-Bot' && github.repository == 'Lost-Paradise-Project/Lost-Paradise' | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3.6.0 | |
- name: Download parts | |
run: | | |
git clone ${{ secrets.HUB_SEC_TOKEN }} | |
mv Secrets/_PrivateResources/_Private Resources/Prototypes/ | |
mv Secrets/_PrivateResources/PERSONAL Resources/Textures/ | |
mv Secrets/_PrivateShared Content.Shared/_PrivateShared | |
mv Secrets/_PrivateServer Content.Server/_PrivateServer | |
mv Secrets/_PrivateClient Content.Client/_PrivateClient | |
- name: Setup Submodule | |
run: git submodule update --init | |
- name: Pull engine updates | |
uses: space-wizards/submodule-dependency@v0.1.5 | |
- name: Install Python dependencies | |
run: | | |
pip3 install --ignore-installed --user pillow jsonschema | |
- name: Validate RSIs | |
run: | | |
python3 RobustToolbox/Schemas/validate_rsis.py Resources/ |