diff options
Diffstat (limited to 'libs/installer_bundle/.github/workflows')
| -rw-r--r-- | libs/installer_bundle/.github/workflows/build.yml | 20 | ||||
| -rw-r--r-- | libs/installer_bundle/.github/workflows/linting.yml | 16 |
2 files changed, 36 insertions, 0 deletions
diff --git a/libs/installer_bundle/.github/workflows/build.yml b/libs/installer_bundle/.github/workflows/build.yml new file mode 100644 index 0000000..3e83565 --- /dev/null +++ b/libs/installer_bundle/.github/workflows/build.yml @@ -0,0 +1,20 @@ +name: Build Installer Bundle + +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 Installer Bundle + id: build-installer-bundle + uses: ModOrganizer2/build-with-mob-action@master + with: + mo2-dependencies: uibase diff --git a/libs/installer_bundle/.github/workflows/linting.yml b/libs/installer_bundle/.github/workflows/linting.yml new file mode 100644 index 0000000..31c504d --- /dev/null +++ b/libs/installer_bundle/.github/workflows/linting.yml @@ -0,0 +1,16 @@ +name: Lint Installer Bundle Plugin + +on: + push: + pull_request: + types: [opened, synchronize, reopened] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Check format + uses: ModOrganizer2/check-formatting-action@master + with: + check-path: "." |
