Fixes the error that the description for an assigned trophy is null
#3241
Workflow file for this run
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: WCFSetup | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
buildWcfSetup: | |
name: Build WCFSetup.tar.gz | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build WCFSetup.tar.gz | |
run: | | |
tar cf com.woltlab.wcf/templates.tar -C com.woltlab.wcf/templates/ --transform 's~^\./~~' . | |
tar cf wcfsetup/install/packages/com.woltlab.wcf.tar -C com.woltlab.wcf --transform 's~^\./~~' --exclude='./templates/*' . | |
tar czf wcfsetup/WCFSetup.tar.gz -C wcfsetup install/ setup/ | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: setup | |
path: | | |
wcfsetup/WCFSetup.tar.gz | |
wcfsetup/install.php | |
wcfsetup/test.php | |
if-no-files-found: error |