Add author and uploader columns to mod list #433
Workflow file for this run
This file contains hidden or 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: Build ModOrganizer 2 | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
env: | |
VCPKG_BINARY_SOURCES: clear;x-azblob,${{ vars.AZ_BLOB_VCPKG_URL }},${{ secrets.AZ_BLOB_SAS }},readwrite | |
jobs: | |
build: | |
runs-on: windows-2022 | |
steps: | |
- name: Build ModOrganizer | |
id: build-modorganizer | |
uses: ModOrganizer2/build-with-mob-action@master | |
with: | |
qt-modules: qtpositioning qtwebchannel qtwebengine qtwebsockets | |
mo2-dependencies: usvfs uibase bsatk esptk archive lootcli | |
- name: Install ModOrganizer | |
shell: pwsh | |
run: | | |
cmake --install vsbuild --config RelWithDebInfo | |
working-directory: ./build/${{ github.event.repository.name }} | |
- name: Package ModOrganizer | |
uses: actions/upload-artifact@master | |
with: | |
name: modorganizer | |
path: ./install/bin |