Skip to content

Commit

Permalink
fix main channel
Browse files Browse the repository at this point in the history
  • Loading branch information
stelzo authored Dec 21, 2024
1 parent 7f42d04 commit 79eeee0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/update_persistence.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,10 @@ jobs:
if: startsWith(github.event.inputs.version, '3')
env:
GH_TOKEN: ${{ secrets.PAT }}
run: gh workflow run release --repo dofusdude/dofus3-${{ github.event.inputs.release }} -f version=${{ github.event.inputs.version }}
run: |
if [ "${{ github.event.inputs.release }}" == "dofus3" ]; then
REPO="dofusdude/dofus3-main"
else
REPO="dofusdude/dofus3-beta"
fi
gh workflow run release --repo $REPO -f version=${{ github.event.inputs.version }}

0 comments on commit 79eeee0

Please sign in to comment.