mirror of
https://github.com/CivMC/Civ.git
synced 2026-07-18 00:20:44 +00:00
Create test workflow for update plugin
This commit is contained in:
17
containers/.github/workflows/update-plugin.yml
vendored
Normal file
17
containers/.github/workflows/update-plugin.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
name: 'Update Plugin'
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
plugin:
|
||||
description: The plugin from this organization to update
|
||||
required: true
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
update_plugin:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: List Releases
|
||||
run: gh release list -R ${{ github.repository_owner }}/${{ inputs.plugin }}
|
||||
Reference in New Issue
Block a user