Skip to content
This repository has been archived by the owner on Aug 12, 2023. It is now read-only.

Releases: demosjarco/wrangler-action-node

v1.1.1

27 Jun 19:52
v1.1.1
c41ffb4
Compare
Choose a tag to compare

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

27 Jun 01:00
v1.1.0
5204040
Compare
Choose a tag to compare

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 in env. No more custom deploy command just to add in variables at run time

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

23 Jun 05:01
v1.0.1
f120d30
Compare
Choose a tag to compare

v1.0.0

23 Jun 04:58
v1.0.0
0caf75c
Compare
Choose a tag to compare