Skip to content

TriggerUpdatePluginmaster #132

TriggerUpdatePluginmaster

TriggerUpdatePluginmaster #132

# This is a basic workflow that is manually triggered
name: Update pluginmaster
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
workflow_dispatch:
repository_dispatch:
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "greet"
generate_pluginmaster:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Runs a single command using the runners shell
- name: Checkout Repository
uses: actions/checkout@v4
with:
submodules: true
- name: Set up .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Run the program
run: dotnet run --project NightmareXIVRepoUpdater/NightmareXIVRepoUpdater/NightmareXIVRepoUpdater.csproj
env:
READONLYKEY: ${{ secrets.READONLYKEY }}
NIGHTMAREXIVWRITEKEY: ${{ secrets.NIGHTMAREXIVWRITEKEY }}
DYNAMICBRIDGESTANDALONEWRITEKEY: ${{ secrets.DYNAMICBRIDGESTANDALONEWRITEKEY }}