Skip to content

Commit

Permalink
Automatically pack rando (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam authored Jul 9, 2024
1 parent 1418df0 commit ddbaaf3
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/pack-randomizer.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Pack Randomizer

on:
workflow_dispatch: # Allows manual triggers
push:
branches:
- main
paths:
- "Dolphin scripts/Entrance Randomizer/**"
- "Dolphin scripts/pack-rando.ps1"
- "Various technical notes/transition_infos.json"
pull_request:
branches:
- main
paths:
- "Dolphin scripts/Entrance Randomizer/**"
- "Dolphin scripts/pack-rando.ps1"
- "Various technical notes/transition_infos.json"

env:
PIP_DISABLE_PIP_VERSION_CHECK: 1
FORCE_COLOR: 1

jobs:
pack-randomizer:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: '& $env:GITHUB_ACTION_PATH/Dolphin scripts/pack-rando.ps1'
shell: pwsh
- uses: actions/upload-artifact@v4
with:
path: "Entrance Randomizer v*.zip"

0 comments on commit ddbaaf3

Please sign in to comment.