clean up github workflow file and build rcbot plugin #4
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: Checkout Repositories | |
description: A composite action to checkout all required repositories. | |
runs: | |
using: "composite" | |
steps: | |
- name: Checkout rehlds | |
uses: actions/checkout@v4 | |
with: | |
repository: wootguy/rehlds | |
path: ./rehlds | |
- name: Checkout map plugins | |
uses: actions/checkout@v4 | |
with: | |
repository: wootguy/SevenKewp_plugins | |
path: ./plugins/SevenKewp_plugins | |
- name: Checkout rcbot plugin | |
uses: actions/checkout@v4 | |
with: | |
repository: wootguy/rcbot | |
path: ./plugins/rcbot |