build-and-tag-action
build-and-tag-action copied to clipboard
📦🔖 A GitHub Action for publishing JavaScript Actions
I use [`wordpos`](https://www.npmjs.com/package/wordpos) in an action. It's currently inpossible to publish that package because it has additional files in `dist`: And only `dist/index.js` is added to the `Automatic compilation` commit....
https://github.com/JasonEtco/build-and-tag-action/issues/20
Hi I really like how this action takes the `v1.x.x` tag and then force pushes a `v1` tag. I am creating very simple actions that don't use node. I am...
It would be nice to support also `action.yaml` instead of just `yml`, though it is the same file format, and it is just one character less. However, I am pretty...
Previously, this action expected the provided tag to already exist, but with this change, the action will now create the tag if it doesn't exist or update the tag if...
Include files other than `main` when creating a commit to update a tag. This will not be needed by most people, but is required if you're bundling `ncc` using `ncc`...
I used the example in the Readme and waisted time debugging problems because I've not used the latest release
For example, if you have such a structure, this action will fail during validation step but should not fail. ``` . ├── action1 │ ├── action.yml │ └── index.js ├──...
I have an action.yml that looks like this ``` yaml # ... runs: using: 'node20' main: 'dist/restore/index.js' post: 'dist/save/index.js' post-if: 'success()' ``` As you can see I need both post...
By default, workflows are not given a GitHub token which will allow writing. This action needs write permission to run. The updated Readme notes that you must give the repos...