Inflate a chosen module #141
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: Inflate a chosen module | |
on: | |
workflow_dispatch: | |
inputs: | |
identifier: | |
description: Identifier of module to inflate | |
required: true | |
jobs: | |
Inflate_module: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get NetKAN repo | |
uses: actions/checkout@v2 | |
with: | |
path: NetKAN | |
- name: Get CKAN-meta repo | |
uses: actions/checkout@v2 | |
with: | |
repository: KSP-CKAN/CKAN-meta | |
path: CKAN-meta | |
- name: Manual inflate | |
uses: HebaruSan/inflate-netkan@master | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_DEFAULT_REGION: ${{ secrets.AWS_DEFAULT_REGION }} | |
with: | |
identifier: ${{ github.event.inputs.identifier }} |