This repository has been archived by the owner on Aug 12, 2023. It is now read-only.
Releases: demosjarco/wrangler-action-node
Releases · demosjarco/wrangler-action-node
v1.1.1
What's Changed
- Bump @types/node from 20.3.1 to 20.3.2 by @dependabot in #3
- Compile to
es2023
target - Minify compiled script (from 112kb to 48kb)
Full Changelog: v1.1.0...v1.1.1
Behind the scenes
- Use
v8-cache
while building to speed up - Nicer actions compile logging
v1.1.0
What's Changed
- Bump actions/checkout from 2 to 3 by @dependabot in #1
- Support
vars
input- Just like
secrets
you can put your variable names 1 per line and set them inenv
. No more customdeploy
command just to add in variables at run time
- Just like
Example:
- uses: demosjarco/wrangler-action-node@v1
with:
apiToken: ...
accountId: ...
environment: ...
vars: |
VARIABLE1
GIT_HASH
secrets: |
SECRET1
SECRET2
env:
VARIABLE1: ${{ vars.VARIABLE1 }}
GIT_HASH: ${{ github.sha }}
SECRET1: ${{ secrets.SECRET1 }}
SECRET2: ${{ secrets.SECRET2 }}
Full Changelog: v1.0.1...v1.1.0
v1.0.1
Full Changelog: v1.0.0...v1.0.1