action.yml 443 B

123456789101112131415161718192021
  1. name: Download Godot artifact
  2. description: Download the Godot artifact.
  3. inputs:
  4. name:
  5. description: The artifact name.
  6. default: ${{ github.job }}
  7. path:
  8. description: The path to download and extract to.
  9. required: true
  10. default: ./
  11. runs:
  12. using: composite
  13. steps:
  14. - name: Download Godot Artifact
  15. uses: actions/download-artifact@v4
  16. with:
  17. name: ${{ inputs.name }}
  18. path: ${{ inputs.path }}