Skip to content

Releases: jsmrcaga/action-netlify-deploy

v2.2.0 - Debug & Extra Flags

13 Apr 06:33
Compare
Choose a tag to compare

What's Changed

  • Adding Debug option and extra custom flags to deploy command by @mkukawski in #55

New Contributors

Full Changelog: v2.1.0...v2.2.0

v2.1.0 - Filter packages in monorepo

11 Oct 07:29
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.0.0...v2.1.0

v2.0.0 - Migrate to composite action (bash script)

17 Jan 06:49
Compare
Choose a tag to compare

Breaking changes

Version 2.0.0 migrates from a docker action to a composite action. This means some breaking changes:

  • nvm is no longer supported. You MUST set up node version using something else (actions/setup-node is meant to do this & you get some cache magic)
  • netlify CLI is no longer installed on the docker image, instead we use the pre-installed version
  • Install command and build command have been kept for now but might be removed in the future. Since there are defaults (npm i/yarn and npm run build) you MUST pass a noop command if you do not wish to use them (ex: echo "No install"). Please open an issue if this bothers you.

What's Changed

  • feat: Switching the action from docker into composite by @crisperit in #42

New Contributors

Full Changelog: v1.8.2...v2.0.0

v1.8.2 - Fix multi-line GitHub output variables

09 Dec 07:52
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.8.1...v1.8.2

v1.8.1 - GitHub warnings on setting output

30 Nov 07:39
Compare
Choose a tag to compare

What's Changed

  • fix: use $GITHUB_OUTPUT instead set-output(deprecated) by @h4k1 in #37

New Contributors

  • @h4k1 made their first contribution in #37

Full Changelog: v1.8.0...v1.8.1

v1.8.0 - Option to disable nvm

02 Jun 21:09
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.7.2...v1.8.0

v1.7.2 - Fix auto nvm

28 Dec 08:12
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.7.1...v1.7.2

v1.7.1 - Beta: Outputs

16 Nov 08:19
2fe02b2
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.7.0...v1.7.1

v1.7.0 - Beta: Outputs

14 Nov 11:22
9cc40dc
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.6.0...v1.7.0

Beta

26 Mar 11:14
Compare
Choose a tag to compare

Changes

Minor

  • Default install command is no longer npm i, it is inferred automatically from the .lock files