cloudposse-releaser
released this
11 Sep 18:10
·
1 commit
to refs/heads/main
since this release
Rewrite action to typescript @goruha (#24)
## what * Rewrite action from docker-backed to typescriptwhy
- Do not build a docker image to avoid hitting hub.docker.com
- Improve performance
Migration v0
to v1
There is an issue The query contains true
or false
fails with an error.
A workaround is to use a quote around "true" and
"false" in a query.
To migrate from v0
to v1
, quote all true
and false
in your queries.
Ex.: query: .true
replace with query: ."true"
Pay attention that substitutions in GitHub actions could also resolved as true
or false
and have to be quoted.
Ex.: query: .${{ inputs.from == '' }}
replace with query: ."${{ inputs.from == '' }}"
🤖 Automatic Updates
Update release workflow to allow pull-requests: write @osterman (#22)
## what - Update workflow (`.github/workflows/release.yaml`) to have permission to comment on PRwhy
- Add comment to PR when it is released