build-and-tag-action icon indicating copy to clipboard operation
build-and-tag-action copied to clipboard

Add support for repository that has multiple action.yml

Open smorimoto opened this issue 4 years ago • 5 comments

For example, if you have such a structure, this action will fail during validation step but should not fail.

.
├── action1
│   ├── action.yml
│   └── index.js
├── action2
│   ├── action.yml
│   └── index.js
├── action3
│   ├── action.yml
│   └── index.js
└── action4
    ├── action.yml
    └── index.js

smorimoto avatar May 16 '20 11:05 smorimoto

Please include a description that describes your use case and why you think this feature should be added.

JasonEtco avatar May 16 '20 17:05 JasonEtco

Updated.

smorimoto avatar May 18 '20 03:05 smorimoto

Gotcha. This would require an additional input for the directory, because not all actions would need to be published at the same time. You're welcome to submit a PR for this.

JasonEtco avatar May 18 '20 03:05 JasonEtco

Unfortunately, I don't have the bandwidth to create a PR for this right now.

smorimoto avatar May 18 '20 03:05 smorimoto

I thought about this a little, but I think all actions should be published with the same tag. A good example is the asdf-vm/actions, so check this out. https://github.com/asdf-vm/actions

smorimoto avatar May 25 '20 17:05 smorimoto