publish-vs-code-extensions.yml / Publish VS Code Extension (push) Successful in 8s
Publish Action Release / Derive release metadata (push) Successful in 5s
Publish Install Lua Addon Action / test_action (push) Failing after 18s
Publish Action Release / Publish tags (push) Successful in 21s
Publish Install Lua Addon Action / publish_action (push) Successful in 57s
25 lines
712 B
YAML
25 lines
712 B
YAML
name: 'Install Lua Addon'
|
|
description: 'Installs DCS Lua addons and type definitions for scripting.'
|
|
inputs:
|
|
destination-path:
|
|
description: 'The destination path in the repository where lua-addons should be installed.'
|
|
required: true
|
|
default: 'lua-addons'
|
|
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: Build action
|
|
run: |
|
|
npm ci
|
|
npm run build
|
|
shell: bash
|
|
working-directory: ${{ github.action_path }}
|
|
|
|
- name: Install lua-addons
|
|
run: node ${{ github.action_path }}/dist/index.js
|
|
shell: bash
|
|
working-directory: ${{ github.workspace }}
|
|
env:
|
|
INPUT_DESTINATION-PATH: ${{ inputs.destination-path }}
|