Bump ArtemisRGB.UI.Shared from 1.2024.225.6 to 1.2024.303.4 #106
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: Build Plugins | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone Plugins | |
uses: actions/checkout@v4 | |
- name: Build Plugins | |
run: dotnet publish -c Release src | |
- name: Install Plugin Uploader | |
run: dotnet tool install ArtemisRGB.Tools.PluginUploader --global | |
- name: Upload | |
if: github.ref == 'refs/heads/master' | |
run: artemis-plugin-uploader upload-all --pat ${{ secrets.WORKSHOP_PAT }} --folder src |