Remove embedded translations from the manifest. #33
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: Build | |
on: | |
# Build on new commits or pull requests. | |
push: | |
pull_request: | |
schedule: | |
# Run every week just to make sure the CI environment still works. | |
- cron: '0 0 * * 0' | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Compile | |
run: dotnet build -c Release | |
- name: Install mautil | |
run: dotnet tool install --global Mono.Addins.UtilTool | |
- name: Create Package | |
run: mautil pack NightVisionAddin/bin/Release/net8.0/NightVisionAddin.dll | |
- name: Upload Package | |
uses: actions/upload-artifact@v3 | |
with: | |
path: '*.mpack' | |
if-no-files-found: error |